Choosing A Webhost:
A web hosting service is a type of Internet hosting service that allows individuals and organizations to provide their own website accessible via the World Wide Web. Web hosts are companies that provide space on a server they own for use by their clients as well as providing Internet connectivity, typically in a data center. Web hosts can also provide data center space and connectivity to the Internet for servers they do not own to be located in their data center, called colocation. more...
|
[SSI] openssi/kernel/cluster/ssi/vproc vp_subr.c,1.2,1.3: msg#00065
|
Subject: |
[SSI] openssi/kernel/cluster/ssi/vproc vp_subr.c,1.2,1.3 |
Update of /cvsroot/ssic-linux/openssi/kernel/cluster/ssi/vproc
In directory sc8-pr-cvs1:/tmp/cvs-serv32708/cluster/ssi/vproc
Modified Files:
Tag: OPENSSI-RH
vp_subr.c
Log Message:
M openssi/kernel/cluster/ssi/vproc/vp_subr.c
M openssi/kernel/include/linux/vproc.h
M openssi/kernel/kernel/ksyms.c
Fixed symbols issue in intermezzo module.
Index: vp_subr.c
===================================================================
RCS file: /cvsroot/ssic-linux/openssi/kernel/cluster/ssi/vproc/vp_subr.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** vp_subr.c 3 Oct 2003 23:25:49 -0000 1.2
--- vp_subr.c 9 Oct 2003 00:31:06 -0000 1.3
***************
*** 197,200 ****
--- 197,213 ----
}
+ pid_t ssi_get_ppid(pid_t pid)
+ {
+ struct vproc *vp = LOCATE_VPROC_PID(pid, "tmp get_ssi_pid");
+ int ppid = 0;
+
+ if (!vp)
+ return pid;
+
+ VPOP_GETATTR(vp, &ppid, 0, 0, 0, 0, 0, 0);
+ VPROC_RELE(vp, "tmp get_ssi_pid");
+ return ppid;
+ }
+
struct task_struct *ssi_get_ppid_task(struct task_struct *t)
{
-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
SourceForge.net hosts over 70,000 Open Source Projects.
See the people who have HELPED US provide better services:
Click here: http://sourceforge.net/supporters.php
|
| |