summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEamon Walsh <ewalsh@tycho.nsa.gov>2011-07-01 13:56:18 -0400
committerEamon Walsh <ewalsh@tycho.nsa.gov>2011-07-01 14:05:26 -0400
commit40b50c32510232b185f97e063003426515d41558 (patch)
tree40015d778c14a14cb9e7e1596b25ea14f8d38b68 /src
parenta261839755dae539f57d3c4d48919346fccba86e (diff)
Rename binaries with dashes instead of underscores.
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am4
-rw-r--r--src/comm.c4
-rw-r--r--src/debug.c4
-rw-r--r--src/fd.c2
-rw-r--r--src/local.c2
-rw-r--r--src/local.h2
-rw-r--r--src/monitor.c2
-rw-r--r--src/server.c2
-rw-r--r--src/track.c4
-rw-r--r--src/xen_backend.c2
-rw-r--r--src/xen_backend.h2
-rw-r--r--src/xen_linpicker.h2
-rw-r--r--src/xen_monitor.c2
-rw-r--r--src/xen_server.c4
-rw-r--r--src/xenfb_monitor.c4
-rw-r--r--src/xenfb_server.c4
16 files changed, 23 insertions, 23 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index c66bb73..724941c 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -1,4 +1,4 @@
-bin_PROGRAMS = linpicker_server linpicker_monitor linpicker_track
+bin_PROGRAMS = linpicker-server linpicker-monitor linpicker-track
AM_CFLAGS = -I../libvchan $(DFB_CFLAGS) $(UDEV_CFLAGS) $(XCB_CFLAGS) \
-DPKGDATADIR="\"$(pkgdatadir)\""
@@ -21,6 +21,6 @@ linpicker_track_SOURCES = track.c
linpicker_track_LDADD = ../libvchan/libvchan.la -lxenctrl -lxenstore $(XCB_LIBS)
if LOCALSOCK
-noinst_PROGRAMS = linpicker_debug
+noinst_PROGRAMS = linpicker-debug
linpicker_debug_SOURCES = debug.c
endif
diff --git a/src/comm.c b/src/comm.c
index 06ca63b..2eee7ff 100644
--- a/src/comm.c
+++ b/src/comm.c
@@ -11,9 +11,9 @@
*
* @section DESCRIPTION
*
- * This is the code that handles incoming libvchan events from linpicker_track.
+ * This is the code that handles incoming libvchan events from linpicker-track.
* This code shoud be robust against bad behavior on the other side, as
- * we don't trust the guest that is running linpicker_track.
+ * we don't trust the guest that is running linpicker-track.
*/
#include <sys/types.h>
diff --git a/src/debug.c b/src/debug.c
index cd00427..7946f0b 100644
--- a/src/debug.c
+++ b/src/debug.c
@@ -12,7 +12,7 @@
* @section DESCRIPTION
*
* This is the linpicker_cli program that can send debugging commands to
- * linpicker_server over a local socket if linpicker_server was compiled
+ * linpicker-server over a local socket if linpicker-server was compiled
* with the "enable-socket" configure-time option (default: disabled).
*/
@@ -42,7 +42,7 @@ main(int argc, char **argv)
int sd;
if (argc != 2)
- bail("Usage: linpicker_debug <code>\n\t0 - Dump views\n");
+ bail("Usage: linpicker-debug <code>\n\t0 - Dump views\n");
msg = atoi(argv[1]);
sd = socket(AF_UNIX, SOCK_DGRAM, 0);
diff --git a/src/fd.c b/src/fd.c
index cecfdfe..37f135a 100644
--- a/src/fd.c
+++ b/src/fd.c
@@ -15,7 +15,7 @@
* 1. Code to redirect stderr into a log file and simple logging functions.
* 2. Generic filehandle tracking code for running a select loop.
*
- * This code is shared between linpicker_server and linpicker_monitor.
+ * This code is shared between linpicker-server and linpicker-monitor.
*/
#define _GNU_SOURCE
diff --git a/src/local.c b/src/local.c
index 74bf53c..df2e425 100644
--- a/src/local.c
+++ b/src/local.c
@@ -11,7 +11,7 @@
*
* @section DESCRIPTION
*
- * This is an optional part of linpicker_server that enables a debugging
+ * This is an optional part of linpicker-server that enables a debugging
* interface over a local socket if the "enable-socket" configure-time option
* is set (default: disabled).
*
diff --git a/src/local.h b/src/local.h
index 997b749..1197676 100644
--- a/src/local.h
+++ b/src/local.h
@@ -14,7 +14,7 @@
#define _LINPICKER_LOCAL_H_
/* The local socket address */
-#define LINPICKER_SOCKNAME "\0linpicker_server"
+#define LINPICKER_SOCKNAME "\0linpicker-server"
/* 1-byte messages accepted over the socket */
#define LINPICKER_LOCAL_DUMP_VIEWS 0
diff --git a/src/monitor.c b/src/monitor.c
index 4262210..1df3f2e 100644
--- a/src/monitor.c
+++ b/src/monitor.c
@@ -11,7 +11,7 @@
*
* @section DESCRIPTION
*
- * This is the main routine for the linpicker_monitor program.
+ * This is the main routine for the linpicker-monitor program.
* Nothing much here except initialization, select loop, and teardown.
*/
diff --git a/src/server.c b/src/server.c
index 92b3d32..84484a1 100644
--- a/src/server.c
+++ b/src/server.c
@@ -12,7 +12,7 @@
*
* @section DESCRIPTION
*
- * This is the main routine for the linpicker_server program.
+ * This is the main routine for the linpicker-server program.
* Nothing much here except initialization, select loop, and teardown.
*/
diff --git a/src/track.c b/src/track.c
index 039622d..f17ad8a 100644
--- a/src/track.c
+++ b/src/track.c
@@ -26,11 +26,11 @@
*
* @section DESCRIPTION
*
- * This is the linpicker_track program.
+ * This is the linpicker-track program.
*
* The Linpicker version of track has been completely rewritten from scratch.
* The purpose of the program is to keep track of top level X Windows and
- * report their position, size, and visibility to linpicker_server via a
+ * report their position, size, and visibility to linpicker-server via a
* libvchan connection.
*/
diff --git a/src/xen_backend.c b/src/xen_backend.c
index c466072..c8d8712 100644
--- a/src/xen_backend.c
+++ b/src/xen_backend.c
@@ -26,7 +26,7 @@
* @section DESCRIPTION
*
* This is the stock generic backend code from QEMU, modified only slightly.
- * This code is shared between linpicker_monitor and linpicker_server.
+ * This code is shared between linpicker-monitor and linpicker-server.
*/
#include <sys/types.h>
diff --git a/src/xen_backend.h b/src/xen_backend.h
index 09683f5..afca263 100644
--- a/src/xen_backend.h
+++ b/src/xen_backend.h
@@ -26,7 +26,7 @@
* @section DESCRIPTION
*
* This is the stock generic backend code from QEMU, modified only slightly.
- * This code is shared between linpicker_monitor and linpicker_server.
+ * This code is shared between linpicker-monitor and linpicker-server.
*/
#ifndef QEMU_HW_XEN_BACKEND_H
diff --git a/src/xen_linpicker.h b/src/xen_linpicker.h
index 83cbdac..9a6db25 100644
--- a/src/xen_linpicker.h
+++ b/src/xen_linpicker.h
@@ -31,7 +31,7 @@
* @section DESCRIPTION
*
* This is "glue" code between the functions from QEMU and the core
- * linpicker_server or linpicker_monitor code. The functions prefixed with
+ * linpicker-server or linpicker-monitor code. The functions prefixed with
* xen_linpicker_ have differing definitions between server and monitor.
* This header is shared between both programs.
*/
diff --git a/src/xen_monitor.c b/src/xen_monitor.c
index 83fe1d0..ca576ad 100644
--- a/src/xen_monitor.c
+++ b/src/xen_monitor.c
@@ -13,7 +13,7 @@
* @section DESCRIPTION
*
* This is "glue" code between the functions from QEMU and the core
- * linpicker_monitor code. The only thing here for linpicker_monitor is the
+ * linpicker-monitor code. The only thing here for linpicker-monitor is the
* domain scanning code that listens in XenStore for new domains starting
* up and handles them (not present in QEMU because each QEMU instance is for
* a single domain). In particular the calls to libxenlight to create the
diff --git a/src/xen_server.c b/src/xen_server.c
index 3cc0a2a..a178525 100644
--- a/src/xen_server.c
+++ b/src/xen_server.c
@@ -13,10 +13,10 @@
* @section DESCRIPTION
*
* This is "glue" code between the functions from QEMU and the core
- * linpicker_server code. There are three main things here:
+ * linpicker-server code. There are three main things here:
*
* 1. Libvchan setup, teardown, and processing code that handles the vchan
- * communications channel from linpicker_track.
+ * communications channel from linpicker-track.
*
* 2. Domain scanning code that listens in XenStore for new domains starting
* up and handles them (not present in QEMU because each QEMU instance is for
diff --git a/src/xenfb_monitor.c b/src/xenfb_monitor.c
index 0fd6ec5..a741477 100644
--- a/src/xenfb_monitor.c
+++ b/src/xenfb_monitor.c
@@ -33,11 +33,11 @@
* This is the stock framebuffer and input backend code from QEMU,
* modified to call Linpicker instead of QEMU functions.
*
- * This is the code for linpicker_monitor, which is responsible for setting
+ * This is the code for linpicker-monitor, which is responsible for setting
* up the framebuffer and input device backends in XenStore. This code
* acutally only handles XenStore writes during frontend state transitions;
* the initial setup is done using functions from libxenlight. No actual
- * servicing of the devices are done here, that is linpicker_server's job.
+ * servicing of the devices are done here, that is linpicker-server's job.
*/
#include <sys/types.h>
diff --git a/src/xenfb_server.c b/src/xenfb_server.c
index 8935444..1cff7d2 100644
--- a/src/xenfb_server.c
+++ b/src/xenfb_server.c
@@ -33,8 +33,8 @@
* This is the stock framebuffer and input backend code from QEMU,
* modified to call Linpicker instead of QEMU functions.
*
- * This is the code for linpicker_server, which does not update anything
- * in XenStore (that is the job of linpicker_monitor). Rather, this code
+ * This is the code for linpicker-server, which does not update anything
+ * in XenStore (that is the job of linpicker-monitor). Rather, this code
* is responsible for waiting until the frontend goes to Connected, then
* mapping the shared pages and framebuffer grant references. Events are
* handled here, with framebuffer updates being sent to Linpicker and input