Fixed spacing.

This commit is contained in:
Joel Sherrill
1999-11-16 21:56:45 +00:00
parent a47e653a2c
commit d2bfbaf2b1
12 changed files with 185 additions and 175 deletions

View File

@@ -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

View File

@@ -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:

View File

@@ -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
); );