mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-04 08:20:45 -08:00
Merge branch 'develop' into 'develop'
Fix non msvc build broken by 5758af77
See merge request !43
This commit is contained in:
commit
625f76b752
1 changed files with 6 additions and 1 deletions
|
|
@ -365,7 +365,12 @@ ecl_import_current_thread(cl_object name, cl_object bindings)
|
||||||
cl_object p = processes->vector.self.t[i];
|
cl_object p = processes->vector.self.t[i];
|
||||||
if (!Null(p)
|
if (!Null(p)
|
||||||
&&
|
&&
|
||||||
GetThreadId(p->process.thread) == GetThreadId(current))
|
#ifdef ECL_WINDOWS_THREADS
|
||||||
|
GetThreadId(p->process.thread) == GetThreadId(current)
|
||||||
|
#else
|
||||||
|
p->process.thread == current
|
||||||
|
#endif
|
||||||
|
)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue