msgbuf: Light detailing (const'ify and bool'itize)
This commit is contained in:
parent
a6bb5342e3
commit
21aa6e8345
@ -181,7 +181,7 @@ msgbuf_addchar(struct msgbuf *mbp, int c)
|
||||
* carriage returns down this path. So do we still need it?
|
||||
*/
|
||||
void
|
||||
msgbuf_addstr(struct msgbuf *mbp, int pri, char *str, int filter_cr)
|
||||
msgbuf_addstr(struct msgbuf *mbp, int pri, const char *str, int filter_cr)
|
||||
{
|
||||
u_int seq;
|
||||
size_t len, prefix_len;
|
||||
|
@ -120,7 +120,7 @@ static void putchar(int ch, void *arg);
|
||||
static char *ksprintn(char *nbuf, uintmax_t num, int base, int *len, int upper);
|
||||
static void snprintf_func(int ch, void *arg);
|
||||
|
||||
static int msgbufmapped; /* Set when safe to use msgbuf */
|
||||
static bool msgbufmapped; /* Set when safe to use msgbuf */
|
||||
int msgbuftrigger;
|
||||
struct msgbuf *msgbufp;
|
||||
|
||||
@ -1030,7 +1030,7 @@ msgbufinit(void *ptr, int size)
|
||||
msgbuf_addstr(msgbufp, -1, BOOT_TAG, 0);
|
||||
if (msgbufmapped && oldp != msgbufp)
|
||||
msgbuf_copy(oldp, msgbufp);
|
||||
msgbufmapped = 1;
|
||||
msgbufmapped = true;
|
||||
oldp = msgbufp;
|
||||
}
|
||||
|
||||
|
@ -71,7 +71,7 @@ extern struct mtx msgbuf_lock;
|
||||
|
||||
void msgbufinit(void *ptr, int size);
|
||||
void msgbuf_addchar(struct msgbuf *mbp, int c);
|
||||
void msgbuf_addstr(struct msgbuf *mbp, int pri, char *str, int filter_cr);
|
||||
void msgbuf_addstr(struct msgbuf *mbp, int pri, const char *str, int filter_cr);
|
||||
void msgbuf_clear(struct msgbuf *mbp);
|
||||
void msgbuf_copy(struct msgbuf *src, struct msgbuf *dst);
|
||||
int msgbuf_getbytes(struct msgbuf *mbp, char *buf, int buflen);
|
||||
|
Loading…
Reference in New Issue
Block a user