forked from Imagelibrary/rtems
Fixed spacing.
This commit is contained in:
@@ -320,6 +320,7 @@ The
|
|||||||
@ifset is-C
|
@ifset is-C
|
||||||
@example
|
@example
|
||||||
int tcsendbreak(
|
int tcsendbreak(
|
||||||
|
int fd
|
||||||
);
|
);
|
||||||
@end example
|
@end example
|
||||||
@end ifset
|
@end ifset
|
||||||
@@ -404,6 +405,7 @@ NONE
|
|||||||
@ifset is-C
|
@ifset is-C
|
||||||
@example
|
@example
|
||||||
int tcflush(
|
int tcflush(
|
||||||
|
int fd
|
||||||
);
|
);
|
||||||
@end example
|
@end example
|
||||||
@end ifset
|
@end ifset
|
||||||
@@ -440,6 +442,7 @@ in a future version.
|
|||||||
@ifset is-C
|
@ifset is-C
|
||||||
@example
|
@example
|
||||||
int tcflow(
|
int tcflow(
|
||||||
|
int fd
|
||||||
);
|
);
|
||||||
@end example
|
@end example
|
||||||
@end ifset
|
@end ifset
|
||||||
|
|||||||
@@ -348,7 +348,9 @@ attribute structure is not used.
|
|||||||
@example
|
@example
|
||||||
#include <mqueue.h>
|
#include <mqueue.h>
|
||||||
|
|
||||||
int mq_close(mqd_t mqdes);
|
int mq_close(
|
||||||
|
mqd_t mqdes
|
||||||
|
);
|
||||||
@end example
|
@end example
|
||||||
|
|
||||||
@subheading STATUS CODES:
|
@subheading STATUS CODES:
|
||||||
@@ -385,7 +387,9 @@ messages that were in the queue remain in the queue.
|
|||||||
@example
|
@example
|
||||||
#include <mqueue.h>
|
#include <mqueue.h>
|
||||||
|
|
||||||
int mq_unlink(const char *name);
|
int mq_unlink(
|
||||||
|
const char *name
|
||||||
|
);
|
||||||
@end example
|
@end example
|
||||||
|
|
||||||
@subheading STATUS CODES:
|
@subheading STATUS CODES:
|
||||||
@@ -644,7 +648,10 @@ All other fields in the mq_attr are ignored by this call.
|
|||||||
|
|
||||||
@example
|
@example
|
||||||
#include <mqueue.h>
|
#include <mqueue.h>
|
||||||
int mq_getattr(mqd_t mqdes, struct mq_attr *mqstat);
|
int mq_getattr(
|
||||||
|
mqd_t mqdes,
|
||||||
|
struct mq_attr *mqstat
|
||||||
|
);
|
||||||
@end example
|
@end example
|
||||||
|
|
||||||
@subheading STATUS CODES:
|
@subheading STATUS CODES:
|
||||||
|
|||||||
@@ -189,7 +189,7 @@ Multiprocessing is currently not supported in this implementation.
|
|||||||
|
|
||||||
@ifset is-C
|
@ifset is-C
|
||||||
@example
|
@example
|
||||||
int sem_open)
|
int sem_open(
|
||||||
const char *name,
|
const char *name,
|
||||||
int oflag
|
int oflag
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user