Skip to content
Snippets Groups Projects
Commit ca8a8baa authored by Bruce Momjian's avatar Bruce Momjian
Browse files

Add comments.

parent f687c7e8
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* $PostgreSQL: pgsql/src/tools/thread/thread_test.c,v 1.27 2004/04/27 18:36:31 momjian Exp $ * $PostgreSQL: pgsql/src/tools/thread/thread_test.c,v 1.28 2004/04/27 18:40:50 momjian Exp $
* *
* This program tests to see if your standard libc functions use * This program tests to see if your standard libc functions use
* pthread_setspecific()/pthread_getspecific() to be thread-safe. * pthread_setspecific()/pthread_getspecific() to be thread-safe.
...@@ -100,6 +100,7 @@ main(int argc, char *argv[]) ...@@ -100,6 +100,7 @@ main(int argc, char *argv[])
temp_filename_1 = malloc(strlen(TEMP_FILENAME_1) + 1); temp_filename_1 = malloc(strlen(TEMP_FILENAME_1) + 1);
strcpy(temp_filename_1, TEMP_FILENAME_1); strcpy(temp_filename_1, TEMP_FILENAME_1);
mktemp(temp_filename_1); mktemp(temp_filename_1);
temp_filename_2 = malloc(strlen(TEMP_FILENAME_2) + 1); temp_filename_2 = malloc(strlen(TEMP_FILENAME_2) + 1);
strcpy(temp_filename_2, TEMP_FILENAME_2); strcpy(temp_filename_2, TEMP_FILENAME_2);
mktemp(temp_filename_2); mktemp(temp_filename_2);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment