aboutsummaryrefslogtreecommitdiff
path: root/src/indexamajig.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2010-04-06 18:31:45 +0200
committerThomas White <taw@physics.org>2010-04-06 18:31:45 +0200
commita3dd78f5bfb3dc91eb78eec465f79853263eb994 (patch)
treeb890a899559a5ec25cff75efcfa83d07a4acb2c2 /src/indexamajig.c
parent366baa64777d705f8ebae91805415187c7a9dbd3 (diff)
indexamajig: Tidy up some malloc()s to reduce heap pressure
Diffstat (limited to 'src/indexamajig.c')
-rw-r--r--src/indexamajig.c31
1 files changed, 13 insertions, 18 deletions
diff --git a/src/indexamajig.c b/src/indexamajig.c
index 2ec01cce..72c1b0b1 100644
--- a/src/indexamajig.c
+++ b/src/indexamajig.c
@@ -535,27 +535,28 @@ int main(int argc, char *argv[])
n_images = 0;
n_hits = 0;
+ for ( i=0; i<nthreads; i++ ) {
+ worker_args[i] = malloc(sizeof(struct process_args));
+ worker_args[i]->filename = malloc(1024);
+ worker_active[i] = 0;
+ }
+
/* Initially, fire off the full number of threads */
for ( i=0; i<nthreads; i++ ) {
char line[1024];
- char *prefixed;
struct process_args *pargs;
int r;
- worker_active[i] = 0;
- worker_args[i] = NULL;
+ pargs = worker_args[i];
rval = fgets(line, 1023, fh);
if ( rval == NULL ) continue;
chomp(line);
- prefixed = malloc(1024);
- snprintf(prefixed, 1023, "%s%s", prefix, line);
+ snprintf(pargs->filename, 1023, "%s%s", prefix, line);
n_images++;
- pargs = malloc(sizeof(*pargs));
- pargs->filename = prefixed;
pargs->output_mutex = &output_mutex;
pargs->gpu_mutex = &gpu_mutex;
pargs->config_cmfilter = config_cmfilter;
@@ -574,7 +575,6 @@ int main(int argc, char *argv[])
pargs->counts = counts;
pargs->gctx = gctx;
pargs->id = i;
- worker_args[i] = pargs;
worker_active[i] = 1;
r = pthread_create(&workers[i], NULL, process_image, pargs);
@@ -593,7 +593,6 @@ int main(int argc, char *argv[])
for ( i=0; i<nthreads; i++ ) {
char line[1024];
- char *prefixed;
int r;
struct process_result *result = NULL;
struct timespec t;
@@ -602,6 +601,8 @@ int main(int argc, char *argv[])
if ( !worker_active[i] ) continue;
+ pargs = worker_args[i];
+
gettimeofday(&tv, NULL);
t.tv_sec = tv.tv_sec;
t.tv_nsec = tv.tv_usec * 1000 + 20000;
@@ -620,13 +621,7 @@ int main(int argc, char *argv[])
rval = fgets(line, 1023, fh);
if ( rval == NULL ) break;
chomp(line);
- prefixed = malloc(1024);
- snprintf(prefixed, 1023, "%s%s", prefix, line);
-
- pargs = worker_args[i];
- free(pargs->filename);
- pargs->filename = prefixed;
- /* Other arguments unchanged */
+ snprintf(pargs->filename, 1023, "%s%s", prefix, line);
worker_active[i] = 1;
r = pthread_create(&workers[i], NULL, process_image,
@@ -658,10 +653,10 @@ int main(int argc, char *argv[])
}
free:
- if ( worker_args[i] != NULL ) {
+ if ( worker_args[i]->filename != NULL ) {
free(worker_args[i]->filename);
- free(worker_args[i]);
}
+ free(worker_args[i]);
}