Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2559)

Unified Diff: fusl/include/mqueue.h

Issue 1714623002: [fusl] clang-format fusl (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: headers too Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: fusl/include/mqueue.h
diff --git a/fusl/include/mqueue.h b/fusl/include/mqueue.h
index f5cbe79656b3ab2fdcfc18c91229649e77a2c82e..1be04fecf4cebec5274bb74f05b86e8f6f7bce6f 100644
--- a/fusl/include/mqueue.h
+++ b/fusl/include/mqueue.h
@@ -15,20 +15,26 @@ extern "C" {
typedef int mqd_t;
struct mq_attr {
- long mq_flags, mq_maxmsg, mq_msgsize, mq_curmsgs, __unused[4];
+ long mq_flags, mq_maxmsg, mq_msgsize, mq_curmsgs, __unused[4];
};
struct sigevent;
int mq_close(mqd_t);
-int mq_getattr(mqd_t, struct mq_attr *);
-int mq_notify(mqd_t, const struct sigevent *);
-mqd_t mq_open(const char *, int, ...);
-ssize_t mq_receive(mqd_t, char *, size_t, unsigned *);
-int mq_send(mqd_t, const char *, size_t, unsigned);
-int mq_setattr(mqd_t, const struct mq_attr *__restrict, struct mq_attr *__restrict);
-ssize_t mq_timedreceive(mqd_t, char *__restrict, size_t, unsigned *__restrict, const struct timespec *__restrict);
-int mq_timedsend(mqd_t, const char *, size_t, unsigned, const struct timespec *);
-int mq_unlink(const char *);
+int mq_getattr(mqd_t, struct mq_attr*);
+int mq_notify(mqd_t, const struct sigevent*);
+mqd_t mq_open(const char*, int, ...);
+ssize_t mq_receive(mqd_t, char*, size_t, unsigned*);
+int mq_send(mqd_t, const char*, size_t, unsigned);
+int mq_setattr(mqd_t,
+ const struct mq_attr* __restrict,
+ struct mq_attr* __restrict);
+ssize_t mq_timedreceive(mqd_t,
+ char* __restrict,
+ size_t,
+ unsigned* __restrict,
+ const struct timespec* __restrict);
+int mq_timedsend(mqd_t, const char*, size_t, unsigned, const struct timespec*);
+int mq_unlink(const char*);
#ifdef __cplusplus
}

Powered by Google App Engine
This is Rietveld 408576698