diff --git a/src/xpdev/wraptest.c b/src/xpdev/wraptest.c index 1b424e7e619c4eb0ad4b88c4d3292f15c6eaf43c..58450d9574a727b4ac671be80149d86252e8d4ae 100644 --- a/src/xpdev/wraptest.c +++ b/src/xpdev/wraptest.c @@ -296,6 +296,7 @@ static void sopen_child_thread(void* arg) { int fd; + printf("sopen_child_thread: %d",arg); if((fd=sopen(LOCK_FNAME,O_RDWR,SH_DENYWR))!=-1) { if(arg) printf("!FAILURE: was able to reopen in child thread\n"); @@ -305,4 +306,6 @@ static void sopen_child_thread(void* arg) close(fd); } else if(arg==0) perror(LOCK_FNAME); -} \ No newline at end of file +} + +/* End of wraptest.c */