diff options
Diffstat (limited to 'src/pkg/runtime/darwin/defs.c')
| -rw-r--r-- | src/pkg/runtime/darwin/defs.c | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/src/pkg/runtime/darwin/defs.c b/src/pkg/runtime/darwin/defs.c index 1a1cdf880..032a6bcbb 100644 --- a/src/pkg/runtime/darwin/defs.c +++ b/src/pkg/runtime/darwin/defs.c @@ -116,6 +116,10 @@ enum {  	$SEGV_MAPERR = SEGV_MAPERR,  	$SEGV_ACCERR = SEGV_ACCERR, +	 +	$ITIMER_REAL = ITIMER_REAL, +	$ITIMER_VIRTUAL = ITIMER_VIRTUAL, +	$ITIMER_PROF = ITIMER_PROF,  };  typedef mach_msg_body_t	$MachBody; @@ -130,6 +134,8 @@ typedef struct __sigaction	$Sigaction;	// used in syscalls  // typedef struct sigaction	$Sigaction;	// used by the C library  typedef union sigval $Sigval;  typedef siginfo_t $Siginfo; +typedef struct timeval	$Timeval; +typedef struct itimerval	$Itimerval;  typedef struct fp_control $FPControl;  typedef struct fp_status $FPStatus; | 
