diff options
| author | Garrett D'Amore <garrett@damore.org> | 2017-07-07 18:41:56 -0700 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2017-07-07 18:41:56 -0700 |
| commit | 3cedf14c3586b0770cb9ee62c75f922ab2006153 (patch) | |
| tree | 2fd6422cd97f91330896a47ba5e68c20705f2c28 /src/platform/posix/posix_pollq.h | |
| parent | 021d09af1375834fe9aaca916e60dcd2ad3be845 (diff) | |
| download | nng-3cedf14c3586b0770cb9ee62c75f922ab2006153.tar.gz nng-3cedf14c3586b0770cb9ee62c75f922ab2006153.tar.bz2 nng-3cedf14c3586b0770cb9ee62c75f922ab2006153.zip | |
SRWLocks FTW!
Modern Windows (Vista and later) have light weight Slim Read/Write locks
which only occupy 64 bits, and don't require any memory allocation to
create.
While here clean up a few more unreferenced variables found with the
Microsoft compilers.
Diffstat (limited to 'src/platform/posix/posix_pollq.h')
| -rw-r--r-- | src/platform/posix/posix_pollq.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/platform/posix/posix_pollq.h b/src/platform/posix/posix_pollq.h index a04d1ef2..224bf765 100644 --- a/src/platform/posix/posix_pollq.h +++ b/src/platform/posix/posix_pollq.h @@ -42,6 +42,6 @@ extern void nni_posix_pollq_cancel(nni_posix_pollq *, nni_posix_pollq_node *); extern int nni_posix_pollq_sysinit(void); extern void nni_posix_pollq_sysfini(void); -#endif // PLATFORM_POSIX +#endif // PLATFORM_POSIX -#endif // PLATFORM_POSIX_POLLQ_H +#endif // PLATFORM_POSIX_POLLQ_H |
