mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 00:08:07 +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…
Reference in a new issue