* @APPLE_LICENSE_HEADER_END@
*/
+#include <TargetConditionals.h>
+
+#if TARGET_IPHONE_SIMULATOR
+struct _not_empty;
+#else
+
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/socket.h>
{
*q = '\0';
m = asl_input_parse(p, q - p, NULL, SOURCE_KERN);
- dispatch_async(global.work_queue, ^{ process_message(m, SOURCE_KERN); });
+ process_message(m, SOURCE_KERN);
p = q + 1;
}
}
{
return 0;
}
+
+#endif /* !TARGET_IPHONE_SIMULATOR */