|
[oprof-cvs] CVS: oprofile/module/ia64 op_syscalls.c,1.1,1.2
From: Philippe Elie <phil_e@us...> - 2002-12-16 01:24
|
Update of /cvsroot/oprofile/oprofile/module/ia64
In directory sc8-pr-cvs1:/tmp/cvs-serv21700/module/ia64
Modified Files:
op_syscalls.c
Log Message:
u16 pid to u32, tested/compiled only with 32 bits x86
regards,
Phil
Index: op_syscalls.c
===================================================================
RCS file: /cvsroot/oprofile/oprofile/module/ia64/op_syscalls.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- op_syscalls.c 6 Nov 2002 23:50:19 -0000 1.1
+++ op_syscalls.c 16 Dec 2002 01:24:06 -0000 1.2
@@ -232,7 +232,7 @@
}
-inline static void oprof_report_fork(u16 old, u32 new)
+inline static void oprof_report_fork(u32 old, u32 new)
{
struct op_note note;
@@ -245,7 +245,7 @@
asmlinkage void post_sys_clone(long ret, long arg0, long arg1)
{
- u16 pid = (u16)current->pid;
+ u32 pid = current->pid;
/* FIXME: This should be done in the ASM stub. */
MOD_INC_USE_COUNT;
@@ -257,7 +257,7 @@
asmlinkage void post_sys_clone2(long ret, long arg0, long arg1, long arg2)
{
- u16 pid = (u16)current->pid;
+ u32 pid = current->pid;
/* FIXME: This should be done in the ASM stub. */
MOD_INC_USE_COUNT;
|
| Thread | Author | Date |
|---|---|---|
| [oprof-cvs] CVS: oprofile/module/ia64 op_syscalls.c,1.1,1.2 | Philippe Elie <phil_e@us...> |