Turns out stack size on linux was too small.

This commit is contained in:
Tony Garnock-Jones 2010-12-27 18:50:12 -05:00
parent 920d5aaaf9
commit e20c8d6dd1
1 changed files with 4 additions and 2 deletions

View File

@ -14,13 +14,15 @@ typedef unsigned char u_char;
#include "cmsg_private.h"
#include "harness.h"
#include <assert.h>
#ifdef __APPLE__
/* Bollocks. Looks like OS X chokes unless STACK_SIZE is a multiple of 32k. */
#define STACK_SIZE 32768
#elif linux
#define STACK_SIZE 4096
#define STACK_SIZE 32768
#else
#error Define STACK_SIZE for your platform.
#error Define STACK_SIZE for your platform. It should probably not be less than 32k?
#endif
Process *current_process = NULL;