Commit 6d931c7e authored by Adam Wujek's avatar Adam Wujek 💬

(no technical) replace all occurrences of deamon with daemon

Signed-off-by: Adam Wujek's avatarAdam Wujek <adam.wujek@cern.ch>
parent 59e08897
#!/bin/ash
export WR_HOME="/wr"
echo "Killing deamon"
echo "Killing daemon"
killall wrsw_hal
killall wrsw_rtud
killall ptpd
......
......@@ -696,9 +696,9 @@ wrsBootUserspaceDaemonsMissing OBJECT-TYPE
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Checking if all desired deamons are running.
allDeamonsPresent - all deamons running
other numbers represent number of deamons not running
"Checking if all desired daemons are running.
allDeamonsPresent - all daemons running
other numbers represent number of daemons not running
other errors (can be: unable to run ps command or problem with multiple process instances)
are reported as maximum number of missing modules"
::= { wrsBootStatusGroup 14 }
......@@ -925,7 +925,7 @@ wrsStartCntHAL OBJECT-TYPE
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of HAL deamon starts"
"Number of HAL daemon starts"
::= { wrsStartCntGroup 1 }
wrsStartCntPPSI OBJECT-TYPE
......@@ -933,7 +933,7 @@ wrsStartCntPPSI OBJECT-TYPE
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of PPSI deamon starts"
"Number of PPSI daemon starts"
::= { wrsStartCntGroup 2 }
wrsStartCntRTUd OBJECT-TYPE
......@@ -941,7 +941,7 @@ wrsStartCntRTUd OBJECT-TYPE
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of RTU deamon starts"
"Number of RTU daemon starts"
::= { wrsStartCntGroup 3 }
wrsStartCntSshd OBJECT-TYPE
......@@ -949,7 +949,7 @@ wrsStartCntSshd OBJECT-TYPE
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Nmber of SSH deamon starts"
"Nmber of SSH daemon starts"
::= { wrsStartCntGroup 4 }
wrsStartCntHttpd OBJECT-TYPE
......@@ -957,7 +957,7 @@ wrsStartCntHttpd OBJECT-TYPE
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Nmber of HTTP deamon starts"
"Nmber of HTTP daemon starts"
::= { wrsStartCntGroup 5 }
wrsStartCntSnmpd OBJECT-TYPE
......@@ -965,7 +965,7 @@ wrsStartCntSnmpd OBJECT-TYPE
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Nmber of SNMP deamon starts"
"Nmber of SNMP daemon starts"
::= { wrsStartCntGroup 6 }
wrsStartCntSyslogd OBJECT-TYPE
......@@ -973,7 +973,7 @@ wrsStartCntSyslogd OBJECT-TYPE
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Nmber of SYSLOG deamon starts"
"Nmber of SYSLOG daemon starts"
::= { wrsStartCntGroup 7 }
-- wrsSpllState (.7.3)
......
......@@ -61,21 +61,21 @@ static struct wrs_km_item kernel_modules[] = {
[6] = {"g_serial"},
};
/* user space deamon list item */
/* user space daemon list item */
struct wrs_usd_item {
char *key; /* process name */
int32_t exp; /* expected number of processes */
uint32_t cnt; /* number of processes found */
};
/* user space deamon list */
/* user space daemon list */
/* - key contain process name reported by ps command
* - positive exp describe exact number of expected processes
* - negative exp describe minimum number of expected processes. Usefull for
* processes that is hard to predict number of their instances. For example
* new dropbear process is spawned at ssh login.
*/
static struct wrs_usd_item userspace_deamons[] = {
static struct wrs_usd_item userspace_daemons[] = {
[0] = {.key = "/usr/sbin/dropbear", .exp = -1}, /* expect at least one
* dropbear process */
[1] = {"/wr/bin/wrsw_hal", 2}, /* two wrsw_hal instances */
......@@ -381,8 +381,8 @@ static void get_loaded_kernel_modules_status(void)
fclose(f);
}
/* check if deamons from userspace_deamons array are running */
static void get_deamons_status(void)
/* check if daemons from userspace_daemons array are running */
static void get_daemons_status(void)
{
FILE *f;
char key[41]; /* 1 for null char */
......@@ -391,9 +391,9 @@ static void get_deamons_status(void)
int processes_wrong = 0; /* number of too many or too few processes */
/* clear user space deamon counters */
for (i = 0; i < ARRAY_SIZE(userspace_deamons); i++) {
userspace_deamons[i].cnt = 0;
/* clear user space daemon counters */
for (i = 0; i < ARRAY_SIZE(userspace_daemons); i++) {
userspace_daemons[i].cnt = 0;
}
/* Use ps command to get process list, more portable, less error prone
......@@ -405,11 +405,11 @@ static void get_deamons_status(void)
wrsBootStatus_s.wrsBootUserspaceDaemonsMissing = 0;
/* Notify snmp about error in processes list */
/* Count number of expected processes */
for (i = 0; i < ARRAY_SIZE(userspace_deamons); i++) {
for (i = 0; i < ARRAY_SIZE(userspace_daemons); i++) {
/* when exp < 0 then expect at least number of
* -exp processes */
wrsBootStatus_s.wrsBootUserspaceDaemonsMissing +=
abs(userspace_deamons[i].exp);
abs(userspace_daemons[i].exp);
}
return;
......@@ -423,31 +423,31 @@ static void get_deamons_status(void)
if (ret != 1)
continue; /* error... or EOF */
for (i = 0; i < ARRAY_SIZE(userspace_deamons); i++) {
if (strncmp(key, userspace_deamons[i].key, 40))
for (i = 0; i < ARRAY_SIZE(userspace_daemons); i++) {
if (strncmp(key, userspace_daemons[i].key, 40))
continue;
userspace_deamons[i].cnt++;
userspace_daemons[i].cnt++;
break;
}
}
for (i = 0; i < ARRAY_SIZE(userspace_deamons); i++) {
if (userspace_deamons[i].exp < 0) {
for (i = 0; i < ARRAY_SIZE(userspace_daemons); i++) {
if (userspace_daemons[i].exp < 0) {
/* if exp < 0 then expect at least -exp processes,
* useful in situation when we cannot predict exact
* number of processes.
* NOTE: exp in this case is negative number */
/* saturate cnt */
if (userspace_deamons[i].cnt > (-userspace_deamons[i].exp)) {
userspace_deamons[i].cnt =
(-userspace_deamons[i].exp);
if (userspace_daemons[i].cnt > (-userspace_daemons[i].exp)) {
userspace_daemons[i].cnt =
(-userspace_daemons[i].exp);
}
}
/* Calculate delta between expected and counted number
* of processes. Neither too much or too few are ok.
* NOTE: abs "exp" too */
processes_wrong += abs(abs(userspace_deamons[i].exp)
- userspace_deamons[i].cnt);
processes_wrong += abs(abs(userspace_daemons[i].exp)
- userspace_daemons[i].cnt);
}
/* save number of processes missing */
......@@ -480,8 +480,8 @@ time_t wrsBootStatus_data_fill(void)
/* get loaded kernel modules */
get_loaded_kernel_modules_status();
/* get info about running deamons */
get_deamons_status();
/* get info about running daemons */
get_daemons_status();
/* there was an update, return current time */
return time_update;
......
......@@ -80,7 +80,7 @@ time_t wrsOSStatus_data_fill(void)
|| b->wrsBootLoadLM32 == WRS_BOOT_LOAD_LM32_ERROR
|| b->wrsBootLoadLM32 == WRS_BOOT_LOAD_LM32_FILE_NOT_FOUND
|| b->wrsBootKernelModulesMissing > 0 /* contain number of missing modules */
|| b->wrsBootUserspaceDaemonsMissing > 0 /* contain number of missing deamons */
|| b->wrsBootUserspaceDaemonsMissing > 0 /* contain number of missing daemons */
) {
wrsOSStatus_s.wrsBootSuccessful = WRS_BOOT_SUCCESSFUL_ERROR;
......
......@@ -69,7 +69,7 @@ static int hal_shutdown()
return 0;
}
static void hal_deamonize();
static void hal_daemonize();
/* Main initialization function */
static int hal_init()
......@@ -105,13 +105,13 @@ static int hal_init()
shw_io_write(shw_io_led_state_g, 1);
if (daemon_mode)
hal_deamonize();
hal_daemonize();
return 0;
}
/* Turns a nice and well-behaving HAL into an evil servant of satan. */
static void hal_deamonize()
static void hal_daemonize()
{
pid_t pid, sid;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment