Skip to content

Commit afe4d16

Browse files
committed
fixed typos
1 parent b8cefd1 commit afe4d16

File tree

11 files changed

+17
-17
lines changed

11 files changed

+17
-17
lines changed

source/clients/qsh/ocs_qsh.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1759,7 +1759,7 @@ int main(int argc, const char **argv)
17591759
}
17601760

17611761
/*
1762-
** if environment QRSH_WRAPPER is set, pass it trough environment
1762+
** if environment QRSH_WRAPPER is set, pass it through environment
17631763
*/
17641764
{
17651765
char *wrapper = getenv("QRSH_WRAPPER");

source/daemons/common/procfs.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ void procfs_kill_addgrpid(gid_t add_grp_id, int sig, tShepherd_trace shepherd_tr
335335

336336
#if defined(LINUX)
337337
/* if UID, GID, EUID and EGID == 0
338-
* don't kill the process!!! - it could be the rpc.nfs-deamon
338+
* don't kill the process!!! - it could be the rpc.nfs-daemon
339339
*/
340340
if (!(uids[0] == 0 && gids[0] == 0 &&
341341
uids[1] == 0 && gids[1] == 0)) {

source/daemons/qmaster/ocs_ReportingFileWriter.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ namespace ocs {
390390
* - when the first usage record for a job is received after midnight.
391391
* - the job hasn't just started some seconds before midnight.
392392
* This is an optimization to limit the number of intermediate
393-
* accounting records in troughput clusters with short job runtimes.
393+
* accounting records in throughput clusters with short job runtimes.
394394
* The minimum runtime required for an intermediate record to be written
395395
* is defined in INTERMEDIATE_MIN_RUNTIME.
396396
*

source/daemons/qmaster/sge_advance_reservation_qmaster.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ int ar_spool(lList **alpp, lListElem *ep, gdi_object_t *object) {
380380
* After an object was modified/added and spooled successfully
381381
* it is possibly necessary to perform additional tasks.
382382
* For example it is necessary to send some events to
383-
* other deamon.
383+
* other daemon.
384384
*
385385
* INPUTS
386386
* sge_gdi_ctx_class_t *ctx - GDI context

source/daemons/qmaster/sge_ckpt_qmaster.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ int ckpt_spool(lList **alpp, lListElem *ep, gdi_object_t *object) {
244244
* After an object was modified/added and spooled successfully
245245
* it is possibly necessary to perform additional tasks.
246246
* For example it is necessary to send some events to
247-
+ other deamon.
247+
+ other daemon.
248248
*
249249
*
250250
* INPUTS

source/libs/japi/japi.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3660,7 +3660,7 @@ int japi_wifsignaled(int *signaled, int stat, dstring *diag)
36603660
* int stat - 'stat' value returned by japi_wait()
36613661
*
36623662
* OUTPUTS
3663-
* dstring *sig - Returns signal the job died trough in string form
3663+
* dstring *sig - Returns signal the job died through in string form
36643664
* (e.g. "SIGKILL")
36653665
* dstring *diag - Returns diagnosis information - on error.
36663666
*

source/libs/sched/sge_qeti.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@
5151
#include "uti/sge.h"
5252

5353
/* At that point in time we only keep references to in the iterator that
54-
* allow for efficiently iterating trough relevant queue end times in
55-
* that affect resouce utilization of a particular job.
54+
* allow for efficiently iterating through relevant queue end times in
55+
* that affect resource utilization of a particular job.
5656
*
5757
* Further improvements with sge_qeti_t might allow to notably reduce
5858
* the time for the actual resource selection: It might be useful for
@@ -71,7 +71,7 @@ struct sge_qeti_s {
7171
* when we seek for reservation the changes with the resource utilization
7272
* diagrams relevant for this job are marked with a '+'
7373
*
74-
* After intializing the time iterator using sge_qeti_allocate() the
74+
* After initializing the time iterator using sge_qeti_allocate() the
7575
* iterator keeps references to all resource instances (QETI_resource_instance)
7676
* shown in the diagram below and all queue end next (QETI_queue_end_next)
7777
* references refer to the very end of those resource diagrams.

source/libs/sgeobj/sge_daemonize.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,11 @@ static int fd_pipe[2];
7474
* sge_daemonize_finalize().
7575
* The parent process will exit with one of the following exit states:
7676
*
77-
* typedef enum uti_deamonize_state_type {
77+
* typedef enum uti_daemonize_state_type {
7878
* SGE_DEAMONIZE_OK = 0, ok
7979
* SGE_DAEMONIZE_DEAD_CHILD = 1, child exited before sending state
8080
* SGE_DAEMONIZE_TIMEOUT = 2 timeout whild waiting for state
81-
* } uti_deamonize_state_t;
81+
* } uti_daemonize_state_t;
8282
*
8383
* Daemonize the current application. Throws ourself into the
8484
* background and dissassociates from any controlling ttys.

source/libs/uti/sge_os.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,11 @@
5252
* typedef for sge_daemonize_prepare() and sge_daemonize_finalize()
5353
* max. supported number = 999
5454
*/
55-
typedef enum uti_deamonize_state_type {
55+
typedef enum uti_daemonize_state_type {
5656
SGE_DEAMONIZE_OK = 0,
5757
SGE_DAEMONIZE_DEAD_CHILD = 100,
5858
SGE_DAEMONIZE_TIMEOUT = 101
59-
} uti_deamonize_state_t;
59+
} uti_daemonize_state_t;
6060

6161

6262
int sge_get_pids(pid_t *, int, const char *, const char *);

source/security/krb/krb_data.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ typedef struct {
4646
char hostname[256]; /* client/server host */
4747
int initialized; /* initialized flag */
4848
krb5_context context; /* kerberos context */
49-
int daemon; /* am I a SGE deamon? */
49+
int daemon; /* am I a SGE daemon? */
5050
int qmaster; /* am I the qmaster? */
5151
char service[256]; /* requested service name */
5252
struct in_addr hostaddr; /* local host address */

0 commit comments

Comments
 (0)