search for: sigcatch

Displaying 5 results from an estimated 5 matches for "sigcatch".

Did you mean: scatch
2007 Feb 13
6
mongrel_cluster 0.2.2 - plugin cluster::status does not exist?
Hello all. I''ve recently installed the 0.2.2 pre-release of mongrel_cluster to try out the new --clean option. However, after installing, when I give a simple "mongrel_rails" command, the cluster::status command is not listed. The error I receive when I do try and run the full "mongrel_rails cluster::status" is... ERROR RUNNING
2007 Aug 16
0
[PATCH/RFC 2/4]Introduce a new field "guest" in task_struct
...0, maj_flt =3D 0; - cputime_t cutime, cstime; - clock_t utime, stime; + cputime_t cutime, cstime, cgtime; + clock_t utime, stime, gtime; unsigned long rsslim =3D 0; char tcomm[sizeof(task->comm)]; unsigned long flags; @@ -387,8 +394,8 @@ = sigemptyset(&sigign); sigemptyset(&sigcatch); - cutime =3D cstime =3D cputime_zero; - utime =3D stime =3D 0; + cutime =3D cstime =3D cgtime =3D cputime_zero; + utime =3D stime =3D gtime =3D 0; = rcu_read_lock(); if (lock_task_sighand(task, &flags)) { @@ -406,6 +413,7 @@ cmaj_flt =3D sig->cmaj_flt; cutime =3D sig->cutime...
2007 Aug 16
0
[PATCH/RFC 2/4]Introduce a new field "guest" in task_struct
...0, maj_flt =3D 0; - cputime_t cutime, cstime; - clock_t utime, stime; + cputime_t cutime, cstime, cgtime; + clock_t utime, stime, gtime; unsigned long rsslim =3D 0; char tcomm[sizeof(task->comm)]; unsigned long flags; @@ -387,8 +394,8 @@ = sigemptyset(&sigign); sigemptyset(&sigcatch); - cutime =3D cstime =3D cputime_zero; - utime =3D stime =3D 0; + cutime =3D cstime =3D cgtime =3D cputime_zero; + utime =3D stime =3D gtime =3D 0; = rcu_read_lock(); if (lock_task_sighand(task, &flags)) { @@ -406,6 +413,7 @@ cmaj_flt =3D sig->cmaj_flt; cutime =3D sig->cutime...
2007 Aug 20
3
[PATCH 2/4] Introduce a new fields "gtime" and "cgtime" in task_struct and signal_struct
...time_t cutime, cstime; +#ifdef CONFIG_GUEST_ACCOUNTING + cputime_t cgtime; + clock_t gtime; +#endif clock_t utime, stime; unsigned long rsslim =3D 0; char tcomm[sizeof(task->comm)]; @@ -388,6 +401,10 @@ static int do_task_stat(struct task_stru sigemptyset(&sigign); sigemptyset(&sigcatch); cutime =3D cstime =3D cputime_zero; +#ifdef CONFIG_GUEST_ACCOUNTING + cgtime =3D cputime_zero; + gtime =3D 0; +#endif utime =3D stime =3D 0; = rcu_read_lock(); @@ -406,6 +423,9 @@ static int do_task_stat(struct task_stru cmaj_flt =3D sig->cmaj_flt; cutime =3D sig->cutime; c...
2007 Aug 20
3
[PATCH 2/4] Introduce a new fields "gtime" and "cgtime" in task_struct and signal_struct
...time_t cutime, cstime; +#ifdef CONFIG_GUEST_ACCOUNTING + cputime_t cgtime; + clock_t gtime; +#endif clock_t utime, stime; unsigned long rsslim =3D 0; char tcomm[sizeof(task->comm)]; @@ -388,6 +401,10 @@ static int do_task_stat(struct task_stru sigemptyset(&sigign); sigemptyset(&sigcatch); cutime =3D cstime =3D cputime_zero; +#ifdef CONFIG_GUEST_ACCOUNTING + cgtime =3D cputime_zero; + gtime =3D 0; +#endif utime =3D stime =3D 0; = rcu_read_lock(); @@ -406,6 +423,9 @@ static int do_task_stat(struct task_stru cmaj_flt =3D sig->cmaj_flt; cutime =3D sig->cutime; c...