msgbuf: Light detailing (const'ify and bool'itize)

This commit is contained in:
Kyle Evans 2018-08-09 17:42:27 +00:00
parent a6bb5342e3
commit 21aa6e8345
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=337544
3 changed files with 4 additions and 4 deletions

View File

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

View File

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

View File

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