*
*/
-/* helper / special functions */
-
-#ifdef PTHREADS
-void *write_save_file(void *ptr) {
-
- int fd;
- char dir[128];
- t_moldyn *moldyn;
-
- moldyn=ptr;
-
- snprintf(dir,128,"%s/s-%08.f.save",moldyn->vlsdir,moldyn->time);
- fd=open(dir,O_WRONLY|O_TRUNC|O_CREAT,S_IRUSR|S_IWUSR);
- if(fd<0) perror("[moldyn] save fd open");
- else {
- write(fd,moldyn,sizeof(t_moldyn));
- write(fd,moldyn->atom,moldyn->count*sizeof(t_atom));
- }
-
- close(fd);
-
- pthread_exit(NULL);
-
- return 0;
-}
-#endif
-
/* start the integration */
int moldyn_integrate(t_moldyn *moldyn) {
t_3dvec momentum;
t_moldyn_schedule *sched;
t_atom *atom;
-#ifndef PTHREADS
int fd;
char dir[128];
-#endif
double ds;
double energy_scale;
struct timeval t1,t2;
}
if(s) {
if(!(moldyn->total_steps%s)) {
+ snprintf(dir,128,"%s/s-%08.f.save",
+ moldyn->vlsdir,moldyn->time);
+ fd=open(dir,O_WRONLY|O_TRUNC|O_CREAT,
+ S_IRUSR|S_IWUSR);
+ if(fd<0) perror("[moldyn] save fd open");
+ else {
+ write(fd,moldyn,sizeof(t_moldyn));
+ write(fd,moldyn->atom,
+ moldyn->count*sizeof(t_atom));
+ }
+ close(fd);
+ }
+ }
+ if(a) {
+ if(!(moldyn->total_steps%a)) {
#ifdef PTHREADS
/* check whether thread has not terminated yet */
if(!first) {
md_copy.atom=atom_copy;
memcpy(atom_copy,moldyn->atom,moldyn->count*sizeof(t_atom));
change=0;
- ret=pthread_create(&io_thread,NULL,write_save_file,&md_copy);
+ ret=pthread_create(&io_thread,NULL,visual_atoms,&md_copy);
if(ret) {
- perror("[moldyn] create save file thread\n");
+ perror("[moldyn] create visual atoms thread\n");
return -1;
}
#else
- snprintf(dir,128,"%s/s-%08.f.save",
- moldyn->vlsdir,moldyn->time);
- fd=open(dir,O_WRONLY|O_TRUNC|O_CREAT,
- S_IRUSR|S_IWUSR);
- if(fd<0) perror("[moldyn] save fd open");
- else {
- write(fd,moldyn,sizeof(t_moldyn));
- write(fd,moldyn->atom,
- moldyn->count*sizeof(t_atom));
- }
- close(fd);
-#endif
- }
- }
- if(a) {
- if(!(moldyn->total_steps%a)) {
visual_atoms(moldyn);
+#endif
}
}
return 0;
}
+#ifdef PTHREADS
+void *visual_atoms(void *ptr) {
+#else
int visual_atoms(t_moldyn *moldyn) {
+#endif
int i;
char file[128+64];
t_visual *v;
t_atom *atom;
t_vb vb;
+#ifdef PTHREADS
+ t_moldyn *moldyn;
+
+ moldyn=ptr;
+#endif
v=&(moldyn->vis);
dim.x=v->dim.x;
vb.fd=open(file,O_WRONLY|O_CREAT|O_TRUNC,S_IRUSR|S_IWUSR);
if(vb.fd<0) {
perror("open visual save file fd");
+#ifndef PTHREADS
return -1;
+#endif
}
/* write the actual data file */
close(vb.fd);
+#ifdef PTHREADS
+ pthread_exit(NULL);
+
+}
+#else
+
return 0;
}
+#endif
/*
* fpu cntrol functions