From e167a0a5d9aacbc5692056e2272af9415997d28a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Fri, 19 Sep 2008 08:33:23 +0000 Subject: [PATCH] * Added definition of CALLOUT_MPSAFE. This closes ticket #2752. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27630 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/libs/compat/freebsd_network/compat/sys/callout.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libs/compat/freebsd_network/compat/sys/callout.h b/src/libs/compat/freebsd_network/compat/sys/callout.h index 8084c6750e..f6c5a67d02 100644 --- a/src/libs/compat/freebsd_network/compat/sys/callout.h +++ b/src/libs/compat/freebsd_network/compat/sys/callout.h @@ -19,6 +19,7 @@ struct callout { int c_flags; }; +#define CALLOUT_MPSAFE 0x0001 void callout_init_mtx(struct callout *c, struct mtx *mutex, int flags); int callout_reset(struct callout *, int, void (*)(void *), void *);