mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
Improve prototype casting for thread calls.
This commit is contained in:
parent
8ac3510a4c
commit
1709fde56a
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user