mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-14 15:23:27 +00:00
Fix pthread_create binding when compiling in C++ mode.
C++ has different rules for void pointers, which causes the binding to be invalid when compiling in C++ mode.
This commit is contained in:
@@ -127,7 +127,7 @@ else:
|
||||
importc, header: "<pthread.h>".}
|
||||
|
||||
proc pthread_create(a1: var TSysThread, a2: var TPthread_attr,
|
||||
a3: proc (x: pointer) {.noconv.},
|
||||
a3: proc (x: pointer): pointer {.noconv.},
|
||||
a4: pointer): cint {.importc: "pthread_create",
|
||||
header: "<pthread.h>".}
|
||||
proc pthread_join(a1: TSysThread, a2: ptr pointer): cint {.
|
||||
@@ -315,7 +315,7 @@ when defined(windows):
|
||||
threadProcWrapperBody(closure)
|
||||
# implicitly return 0
|
||||
else:
|
||||
proc threadProcWrapper[TArg](closure: pointer) {.noconv.} =
|
||||
proc threadProcWrapper[TArg](closure: pointer): pointer {.noconv.} =
|
||||
threadProcWrapperBody(closure)
|
||||
{.pop.}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user