diff options
Diffstat (limited to 'src/pkg/runtime/freebsd/defs.c')
-rw-r--r-- | src/pkg/runtime/freebsd/defs.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/pkg/runtime/freebsd/defs.c b/src/pkg/runtime/freebsd/defs.c index 414e7cd76..93f3f9d15 100644 --- a/src/pkg/runtime/freebsd/defs.c +++ b/src/pkg/runtime/freebsd/defs.c @@ -16,6 +16,8 @@ #include <sys/mman.h> #include <sys/ucontext.h> #include <sys/umtx.h> +#include <sys/rtprio.h> +#include <sys/thr.h> #include <sys/_sigset.h> enum { @@ -37,6 +39,8 @@ enum { $EINTR = EINTR, }; +typedef struct rtprio $Rtprio; +typedef struct thr_param $ThrParam; typedef struct sigaltstack $Sigaltstack; typedef struct __sigset $Sigset; typedef union sigval $Sigval; |