aboutsummaryrefslogtreecommitdiff
path: root/src/peaks.h
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2010-04-16 19:18:41 +0200
committerThomas White <taw@physics.org>2010-04-16 19:20:47 +0200
commitca7215bc0355d78d6a5f3ff4fcb629c614f5b201 (patch)
tree4e0ffb7a88ffb802e00a8c18ead87469fd51de42 /src/peaks.h
parentd0ef10cc38b8abda688d3024c6f60a8e9074cb7e (diff)
Push output stream mutex down, and improve output of --near-bragg and --dump-peaks
Diffstat (limited to 'src/peaks.h')
-rw-r--r--src/peaks.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/peaks.h b/src/peaks.h
index 510282f8..a5c771b7 100644
--- a/src/peaks.h
+++ b/src/peaks.h
@@ -17,8 +17,11 @@
#include <config.h>
#endif
+#include <pthread.h>
+
extern void search_peaks(struct image *image);
-extern void dump_peaks(struct image *image);
-extern void output_intensities(struct image *image, UnitCell *cell);
+extern void dump_peaks(struct image *image, pthread_mutex_t *mutex);
+extern void output_intensities(struct image *image, UnitCell *cell,
+ pthread_mutex_t *mutex);
#endif /* PEAKS_H */