__notify_syscall_requester(): use CAS or IKC to notify syscall completion

This commit is contained in:
Balazs Gerofi
2016-08-16 08:56:05 +09:00
parent 5e9957da0f
commit c897a56c34
3 changed files with 68 additions and 1 deletions

View File

@@ -31,6 +31,7 @@
#define SCD_MSG_PREPARE_PROCESS_ACKED 0x2
#define SCD_MSG_PREPARE_PROCESS_NACKED 0x7
#define SCD_MSG_SCHEDULE_PROCESS 0x3
#define SCD_MSG_WAKE_UP_SYSCALL_THREAD 0x14
#define SCD_MSG_INIT_CHANNEL 0x5
#define SCD_MSG_INIT_CHANNEL_ACKED 0x6
@@ -220,6 +221,11 @@ struct ikc_scd_packet {
long sysfs_arg2;
long sysfs_arg3;
};
/* SCD_MSG_SCHEDULE_THREAD */
struct {
int ttid;
};
};
char padding[12];
};