summaryrefslogtreecommitdiff
path: root/timehint.c
diff options
context:
space:
mode:
authorGary E. Miller <gem@rellim.com>2015-04-01 18:33:29 -0700
committerGary E. Miller <gem@rellim.com>2015-04-01 18:34:08 -0700
commit8a3ef363f9cffd351633a785fbc3512ec6c35ef5 (patch)
tree09397e267648750cd107890b72d8f7574004d5d6 /timehint.c
parentbf06d7060901832c51895ecd19c2e3fe6f9bd27f (diff)
downloadgpsd-8a3ef363f9cffd351633a785fbc3512ec6c35ef5.tar.gz
Prefix all NTP logs with NTP:
This makes it easy to pick oout the time logs. Along with PPS:
Diffstat (limited to 'timehint.c')
-rw-r--r--timehint.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/timehint.c b/timehint.c
index a5dd0919..d72921d5 100644
--- a/timehint.c
+++ b/timehint.c
@@ -130,7 +130,7 @@ static volatile struct shmTime *getShmTime(struct gps_context_t *context, int un
sizeof(struct shmTime), (int)(IPC_CREAT | perms));
if (shmid == -1) {
gpsd_log(&context->errout, LOG_ERROR,
- "NTPD shmget(%ld, %zd, %o) fail: %s\n",
+ "NTP: shmget(%ld, %zd, %o) fail: %s\n",
(long int)(NTPD_BASE + unit), sizeof(struct shmTime),
(int)perms, strerror(errno));
return NULL;
@@ -138,12 +138,12 @@ static volatile struct shmTime *getShmTime(struct gps_context_t *context, int un
p = (struct shmTime *)shmat(shmid, 0, 0);
if ((int)(long)p == -1) {
gpsd_log(&context->errout, LOG_ERROR,
- "NTPD shmat failed: %s\n",
+ "NTP: shmat failed: %s\n",
strerror(errno));
return NULL;
}
gpsd_log(&context->errout, LOG_PROG,
- "NTPD shmat(%d,0,0) succeeded, segment %d\n",
+ "NTP: shmat(%d,0,0) succeeded, segment %d\n",
shmid, unit);
return p;
}
@@ -226,7 +226,7 @@ int ntpshm_put(struct gps_device_t *session, volatile struct shmTime *shmseg, st
int precision = -1; /* default precision */
if (shmseg == NULL) {
- gpsd_log(&session->context->errout, LOG_RAW, "NTPD missing shm\n");
+ gpsd_log(&session->context->errout, LOG_RAW, "NTP:PPS: missing shm\n");
return 0;
}
@@ -248,7 +248,7 @@ int ntpshm_put(struct gps_device_t *session, volatile struct shmTime *shmseg, st
timespec_str( &td->real, real_str, sizeof(real_str) );
timespec_str( &td->clock, clock_str, sizeof(clock_str) );
gpsd_log(&session->context->errout, LOG_RAW,
- "NTP ntpshm_put(%s %s) %s @ %s\n",
+ "NTP: ntpshm_put(%s %s) %s @ %s\n",
session->gpsdata.dev.path,
(precision == -20) ? "pps" : "clock",
real_str, clock_str);
@@ -426,7 +426,7 @@ void ntpshm_link_activate(struct gps_device_t *session)
if (session->shm_clock == NULL) {
gpsd_log(&session->context->errout, LOG_WARN,
- "NTPD: ntpshm_alloc() failed\n");
+ "NTP: ntpshm_alloc() failed\n");
return;
}
}