aboutsummaryrefslogtreecommitdiff
path: root/pk/frontend.h
diff options
context:
space:
mode:
authorAndrew Waterman <waterman@cs.berkeley.edu>2015-01-20 16:40:30 -0800
committerAndrew Waterman <waterman@cs.berkeley.edu>2015-01-20 17:20:40 -0800
commit0a81fd3a93ad9eaebae17b207c0048bf5fda1aa2 (patch)
tree164da867da347307b3d116575a8699f5b393c967 /pk/frontend.h
parentb222ef6bcb12197276affa231a4a3b36c068ea75 (diff)
downloadpk-0a81fd3a93ad9eaebae17b207c0048bf5fda1aa2.zip
pk-0a81fd3a93ad9eaebae17b207c0048bf5fda1aa2.tar.gz
pk-0a81fd3a93ad9eaebae17b207c0048bf5fda1aa2.tar.bz2
Support linkat, unlinkat, mkdirat syscalls
Also, old-style syscalls e.g. open are now implemented with e.g. openat.
Diffstat (limited to 'pk/frontend.h')
-rw-r--r--pk/frontend.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/pk/frontend.h b/pk/frontend.h
index edbf22a..dde0d0c 100644
--- a/pk/frontend.h
+++ b/pk/frontend.h
@@ -3,6 +3,6 @@
#ifndef _RISCV_FRONTEND_H
#define _RISCV_FRONTEND_H
-long frontend_syscall(long n, long a0, long a1, long a2, long a3, long a4);
+long frontend_syscall(long n, long a0, long a1, long a2, long a3, long a4, long a5, long a6);
#endif