mirror of
https://github.com/NixOS/nix
synced 2025-06-25 10:41:16 +02:00
eval-gc.cc: Fix warning
This commit is contained in:
parent
6e680a6644
commit
7d4d34a27d
1 changed files with 2 additions and 0 deletions
|
@ -84,7 +84,9 @@ void fixupBoehmStackPointer(void ** sp_ptr, void * _pthread_id)
|
||||||
{
|
{
|
||||||
void *& sp = *sp_ptr;
|
void *& sp = *sp_ptr;
|
||||||
auto pthread_id = reinterpret_cast<pthread_t>(_pthread_id);
|
auto pthread_id = reinterpret_cast<pthread_t>(_pthread_id);
|
||||||
|
# ifndef __APPLE__
|
||||||
pthread_attr_t pattr;
|
pthread_attr_t pattr;
|
||||||
|
# endif
|
||||||
size_t osStackSize;
|
size_t osStackSize;
|
||||||
void * osStackLow;
|
void * osStackLow;
|
||||||
void * osStackBase;
|
void * osStackBase;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue