| Index: runtime/bin/eventhandler_macos.cc
|
| ===================================================================
|
| --- runtime/bin/eventhandler_macos.cc (revision 18775)
|
| +++ runtime/bin/eventhandler_macos.cc (working copy)
|
| @@ -2,14 +2,17 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| +#include "platform/globals.h"
|
| +#if defined(TARGET_OS_MACOS)
|
| +
|
| #include "bin/eventhandler.h"
|
|
|
| -#include <errno.h>
|
| -#include <pthread.h>
|
| -#include <stdio.h>
|
| -#include <string.h>
|
| -#include <sys/event.h>
|
| -#include <unistd.h>
|
| +#include <errno.h> // NOLINT
|
| +#include <pthread.h> // NOLINT
|
| +#include <stdio.h> // NOLINT
|
| +#include <string.h> // NOLINT
|
| +#include <sys/event.h> // NOLINT
|
| +#include <unistd.h> // NOLINT
|
|
|
| #include "bin/dartutils.h"
|
| #include "bin/fdutils.h"
|
| @@ -415,3 +418,5 @@
|
| // The hashmap does not support keys with value 0.
|
| return dart::Utils::WordHash(fd + 1);
|
| }
|
| +
|
| +#endif // defined(TARGET_OS_MACOS)
|
|
|