diff options
author | Glenn Elliott <gelliott@cs.unc.edu> | 2011-03-08 10:19:17 -0500 |
---|---|---|
committer | Glenn Elliott <gelliott@cs.unc.edu> | 2011-03-08 10:19:17 -0500 |
commit | 3b78f08f4a30b59aa3c9c4833aa1aa001f196135 (patch) | |
tree | 8571e274553861595d61a79972cc2250971d1ab2 | |
parent | 756d92948b6fd0a8f5010d83a22eedf8714d0535 (diff) |
Minor fix to make NV registration compile.
-rw-r--r-- | src/syscalls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syscalls.c b/src/syscalls.c index 09d6952..b6f6c5c 100644 --- a/src/syscalls.c +++ b/src/syscalls.c | |||
@@ -91,5 +91,5 @@ int null_call(cycles_t *timestamp) | |||
91 | 91 | ||
92 | int register_nv_device(pid_t pid, int nv_device_id) | 92 | int register_nv_device(pid_t pid, int nv_device_id) |
93 | { | 93 | { |
94 | return syscall(__NR_register_nv_device, pid_t pid, int nv_device_id); | 94 | return syscall(__NR_register_nv_device, pid, nv_device_id); |
95 | } | 95 | } |