Skip to content

Commit

Permalink
Add functions for logging messages in kernel style.
Browse files Browse the repository at this point in the history
Signed-off-by: Richard Cochran <richardcochran@gmail.com>
  • Loading branch information
richardcochran committed Nov 1, 2011
1 parent 11e0446 commit bb1f18d
Show file tree
Hide file tree
Showing 3 changed files with 76 additions and 1 deletion.
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ CFLAGS = -Wall $(INC) $(DEBUG)
LDFLAGS =
LDLIBS = -lm -lrt
PRG = linuxptp
OBJ = phc.o
OBJ = phc.o print.o

SRC = $(OBJ:.o=.c)
DEPEND = $(OBJ:.o=.d)
Expand Down
39 changes: 39 additions & 0 deletions print.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
/**
* @file print.c
* @note Copyright (C) 2011 Richard Cochran <richardcochran@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include <stdarg.h>
#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>

static int verbose = 1;

void print(int level, char const *format, ...)
{
pid_t pid = getpid();
va_list ap;
char buf[1024];

va_start(ap, format);
vsnprintf(buf, sizeof(buf), format, ap);
va_end(ap);

if (verbose) {
fprintf(stdout, "linuxptp[%d]: %s\n", pid, buf);
}
}
36 changes: 36 additions & 0 deletions print.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
/**
* @file print.h
* @brief Logging support functions
* @note Copyright (C) 2011 Richard Cochran <richardcochran@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef HAVE_PRINT_H
#define HAVE_PRINT_H

#include <syslog.h>

void print(int level, char const *format, ...);

#define pr_emerg(x...) print(LOG_EMERG, x)
#define pr_alert(x...) print(LOG_ALERT, x)
#define pr_crit(x...) print(LOG_CRIT, x)
#define pr_err(x...) print(LOG_ERR, x)
#define pr_warning(x...) print(LOG_WARNING, x)
#define pr_notice(x...) print(LOG_NOTICE, x)
#define pr_info(x...) print(LOG_INFO, x)
#define pr_debug(x...) print(LOG_DEBUG, x)

#endif

0 comments on commit bb1f18d

Please sign in to comment.