aboutsummaryrefslogtreecommitdiff
path: root/src/platform/posix/posix_impl.h
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2017-07-10 15:02:38 -0700
committerGarrett D'Amore <garrett@damore.org>2017-07-10 15:02:38 -0700
commit795aebbee77bb74d8792df96dfe1aa79ec9548fc (patch)
tree58c16424c16b9e71cebdceaee4507ab6608f80da /src/platform/posix/posix_impl.h
parentde90f97167d2df6739db47b2c6aad85f06250270 (diff)
downloadnng-795aebbee77bb74d8792df96dfe1aa79ec9548fc.tar.gz
nng-795aebbee77bb74d8792df96dfe1aa79ec9548fc.tar.bz2
nng-795aebbee77bb74d8792df96dfe1aa79ec9548fc.zip
Give up on uncrustify; switch to clang-format.
Diffstat (limited to 'src/platform/posix/posix_impl.h')
-rw-r--r--src/platform/posix/posix_impl.h23
1 files changed, 11 insertions, 12 deletions
diff --git a/src/platform/posix/posix_impl.h b/src/platform/posix/posix_impl.h
index 407adf74..72842076 100644
--- a/src/platform/posix/posix_impl.h
+++ b/src/platform/posix/posix_impl.h
@@ -16,7 +16,7 @@
// when using PLATFORM_POSIX_CLOCK, your condition variable timeouts need
// to use the same base clock values. Normally these should be used
// together. Almost everything depends on PLATFORM_POSIX_DEBUG.
-#ifdef PLATFORM_POSIX
+#ifdef PLATFORM_POSIX
#define PLATFORM_POSIX_ALLOC
#define PLATFORM_POSIX_DEBUG
#define PLATFORM_POSIX_CLOCK
@@ -40,7 +40,7 @@ extern int nni_plat_errno(int);
// Define types that this platform uses.
#ifdef PLATFORM_POSIX_THREAD
-extern int nni_plat_devnull; // open descriptor on /dev/null
+extern int nni_plat_devnull; // open descriptor on /dev/null
#include <pthread.h>
@@ -48,28 +48,27 @@ extern int nni_plat_devnull; // open descriptor on /dev/null
// elsewhere.
struct nni_plat_mtx {
- int init;
- pthread_t owner;
+ int init;
+ pthread_t owner;
pthread_mutex_t mtx;
};
struct nni_plat_thr {
- pthread_t tid;
- void (*func)(void *);
- void * arg;
+ pthread_t tid;
+ void (*func)(void *);
+ void *arg;
};
struct nni_plat_cv {
- pthread_cond_t cv;
- nni_plat_mtx * mtx;
+ pthread_cond_t cv;
+ nni_plat_mtx * mtx;
};
#endif
-
-extern int nni_posix_pollq_sysinit(void);
+extern int nni_posix_pollq_sysinit(void);
extern void nni_posix_pollq_sysfini(void);
-extern int nni_posix_resolv_sysinit(void);
+extern int nni_posix_resolv_sysinit(void);
extern void nni_posix_resolv_sysfini(void);
#endif // PLATFORM_POSIX_IMPL_H