Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/concurrency/coroutine.c

    r2f6a7e93 rb462670  
    123123        if(pageSize == 0ul) pageSize = sysconf( _SC_PAGESIZE );
    124124
     125        LIB_DEBUG_PRINT_SAFE("FRED");
     126
    125127        size_t cxtSize = libCeiling( sizeof(machine_context_t), 8 ); // minimum alignment
    126128
     
    156158                this->limit = (char *)libCeiling( (unsigned long)this->storage, 16 ); // minimum alignment
    157159        } // if
    158         assertf( this->size >= MinStackSize, "Stack size %zd provides less than minimum of %d bytes for a stack.", this->size, MinStackSize );
     160        assertf( this->size >= MinStackSize, "Stack size %d provides less than minimum of %d bytes for a stack.", this->size, MinStackSize );
    159161
    160162        this->base = (char *)this->limit + this->size;
Note: See TracChangeset for help on using the changeset viewer.