summaryrefslogtreecommitdiff
path: root/libgps_shm.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2011-03-27 20:37:26 -0400
committerEric S. Raymond <esr@thyrsus.com>2011-03-27 20:37:26 -0400
commitc5c673add20f2288d45ee0f97fd724ef3de0dac4 (patch)
tree119fa25b92f664ad3b43384592e32a2f974627ed /libgps_shm.c
parent72728dc5a4a49dbdb1c0a9fc48510a91eaa3531b (diff)
downloadgpsd-c5c673add20f2288d45ee0f97fd724ef3de0dac4.tar.gz
Shared-memory export is now integrated and documented.
Diffstat (limited to 'libgps_shm.c')
-rw-r--r--libgps_shm.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libgps_shm.c b/libgps_shm.c
index 4dccf7cc..13c40f19 100644
--- a/libgps_shm.c
+++ b/libgps_shm.c
@@ -30,6 +30,8 @@ int gps_shm_open(/*@out@*/struct gps_data_t *gpsdata)
{
int shmid;
+ libgps_debug_trace((DEBUG_CALLS, "gps_shm_open()\n"));
+
gpsdata->privdata = NULL;
shmid = shmget((key_t)GPSD_KEY, sizeof(struct gps_data_t), 0);
if (shmid == -1) {