gsignal(9r)gsignal(9r)NAME
gsignal - General: Sends a signal to a process group
SYNOPSIS
void gsignal(
pid_t pgroup,
int signal );
ARGUMENTS
Specifies the process group to which you want to send a specified signal. Specifies the signal that you want to send to the specified
process group. You can specify any of the signals defined in /usr/sys/include/sys/signal.h.
DESCRIPTION
The gsignal routine sends a signal to a process group, invoking psignal for each process that is a member of the specified process group.
RETURN VALUES
None
SEE ALSO
Routines: psignal(9r)gsignal(9r)
Check Out this Related Man Page
PSIGNAL(9) BSD Kernel Developer's Manual PSIGNAL(9)NAME
psignal, pgsignal, gsignal -- post signal to a process or process group
SYNOPSIS
#include <sys/types.h>
#include <sys/signalvar.h>
void
psignal(struct proc *p, int signum);
void
pgsignal(struct pgrp *pgrp, int signum, int checkctty);
void
gsignal(int pgid, int signum);
DESCRIPTION
These functions post a signal to one or more processes. The argument signum common to all three functions should be in the range [1-NSIG].
The psignal() function posts signal number signum to the process represented by the process structure p. With a few exceptions noted below,
the target process signal disposition is updated and is marked as runnable, so further handling of the signal is done in the context of the
target process after a context switch. Note that psignal() does not by itself cause a context switch to happen.
The target process is not marked as runnable in the following cases:
o The target process is sleeping uninterruptibly. The signal will be noticed when the process returns from the system call or trap.
o The target process is currently ignoring the signal.
o If a stop signal is sent to a sleeping process that takes the default action (see sigaction(2)), the process is stopped without
awakening it.
o SIGCONT restarts a stopped process (or puts them back to sleep) regardless of the signal action (e.g., blocked or ignored).
If the target process is being traced psignal() behaves as if the target process were taking the default action for signum. This allows the
tracing process to be notified of the signal.
The pgsignal() function posts signal number signum to each member of the process group described by pgrp. If checkctty is non-zero, the sig-
nal will be posted only to processes that have a controlling terminal. pgsignal() is implemented by walking along the process list headed by
the field pg_members of the process group structure pointed at by pgrp and calling psignal() as appropriate. If pgrp is NULL no action is
taken.
The gsignal() function posts signal number signum to each member of the process group identified by the group id pgid. gsignal() first finds
the group structure associated with pgid, then invokes pgsignal() with the argument checkctty set to zero. If pgid is zero no action is
taken.
SEE ALSO sigaction(2), signal(9), tsleep(9)BSD June 22, 1996 BSD
Hi all,
I need some urgent help.
we are using Dynix/ptx V4.5 on i386, have several processes and instances are running on the box round the clock.we increased the processes recently.
We have coded to handle the signals in our programs.
Recently, we noticed most of our processes are... (2 Replies)
Hi All,
When I am running a pro*c executable on an AIX 6.1.0.0 and Oracle 11gR2 environment which is complied in AIX 6.1.0.0 and Oracle 11gR2 environment only , I am getting segment fault error . When the same code is getting compiled in AIX5.3 Oracle 10gR2 env and run in AIX5.3 Oracle 10gR2 ,... (0 Replies)
Hi
I am receiving folowing error while running open office on redhat
please guide how to resolve
(I) x.org loaded video driver of...
(II) Loading /usr/lib64/xorg/modules/drivers/intel_drv.so
(==) Depth 24 pixmap format is 32 bpp
(III) Desktop is: GNOME
(IV) openoffice.org-kde... (1 Reply)
Hi all
I am receivng following error while running openoffice on linux system
Please suggest and linux comman which can remove this error:
(I) x.org loaded video driver of...
(II) Loading /usr/lib64/xorg/modules/drivers/intel_drv.so
(==) Depth 24 pixmap format is 32 bpp
(III) ... (2 Replies)
Hi Forum
Ive been having a problem with the kernal(s) for some strange reason it every time I try and access the date and time/calendar or system settings it locks up the whole laptop and nothing responds. :(. This doesn't happen 11.10.xxx kernel . Any help would be much appreciated and thank you... (1 Reply)
Hello All,
My question is about VNC'ing to a Linux server on the network.
MY PC: OpenSuSE 11.4 (i586)
Remote Server: OpenSuSE 12.3 (x86_64)
### UNAME:
# uname -a
Linux localhost.foo.bar 3.7.10-1.1-desktop #1 SMP PREEMPT Thu Feb 28 15:06:29 UTC 2013 (82d3f21) x86_64 x86_64 x86_64... (1 Reply)