fix syscall return type

This commit is contained in:
Tomoki Shirasawa
2016-09-12 15:40:06 +09:00
parent 84665ff699
commit 673deadf37
2 changed files with 2 additions and 2 deletions

View File

@ -320,7 +320,7 @@ inline struct mcctrl_per_thread_data *mcctrl_get_per_thread_data(
struct mcctrl_per_proc_data *ppd, struct task_struct *task);
void __return_syscall(ihk_os_t os, struct ikc_scd_packet *packet,
int ret, int stid);
long ret, int stid);
#define PROCFS_NAME_MAX 1000

View File

@ -1337,7 +1337,7 @@ static long pager_call(ihk_os_t os, struct syscall_request *req)
}
void __return_syscall(ihk_os_t os, struct ikc_scd_packet *packet,
int ret, int stid)
long ret, int stid)
{
unsigned long phys;
struct syscall_response *res;