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

Improve prototype casting for thread calls.

parent 8ac3510a
No related branches found
No related tags found
No related merge requests found
......@@ -48,8 +48,8 @@ EXEC SQL END DECLARE SECTION;
EXEC SQL AT test0 COMMIT WORK;
EXEC SQL DISCONNECT test0;
pthread_create(&thread1, NULL, (void *) ins1, NULL);
pthread_create(&thread2, NULL, (void *) ins2, NULL);
pthread_create(&thread1, NULL, (void * (*)(void *)) ins1, NULL);
pthread_create(&thread2, NULL, (void * (*)(void *)) ins2, NULL);
pthread_join(thread1, NULL);
pthread_join(thread2, NULL);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment