[tuxdroid-svn] r431 - daemon/trunk
Status: Beta
Brought to you by:
ks156
From: neimad <c2m...@c2...> - 2007-06-24 12:25:52
|
Author: neimad Date: 2007-06-24 14:25:51 +0200 (Sun, 24 Jun 2007) New Revision: 431 Modified: daemon/trunk/main.c Log: * Added some doxygen comments on global variables. Modified: daemon/trunk/main.c =================================================================== --- daemon/trunk/main.c 2007-06-24 12:01:39 UTC (rev 430) +++ daemon/trunk/main.c 2007-06-24 12:25:51 UTC (rev 431) @@ -53,12 +53,14 @@ .release_status = "", .revision = 0 }; -bool show_frames = false; -bool show_raw_status = false; -bool show_invalid_raw = false; -pid_t daemon_pid = 0; -unsigned char daemonized = 0; +bool show_frames = false; /**< Show USB frames structure */ +bool show_raw_status = false; /**< Show all raw statuses */ +bool show_invalid_raw = false; /**< Show only invalid statuses */ + +pid_t daemon_pid = 0; /**< PID of daemon */ +unsigned char daemonized = 0; /**< Daemonize ? (stay in foreground if not) */ + static uid_t user = (uid_t)-1; /**< Initial user id */ static gid_t group = (gid_t)-1; /**< Initial group id */ |