Searched refs:call (Results 1 – 2 of 2) sorted by relevance
618 int syscall(int call, int *retval, ...) in syscall() argument623 if (call < 0 || call >= calls_no) { in syscall()624 debugf("invalid call #%d\n", call); in syscall()628 if (calls_table[call] == NULL) { in syscall()629 debugf("syscall #%d does not have a handler\n", call); in syscall()634 rv = calls_table[call](ap); in syscall()
12 - the consumer app is responsible for producing appropriate context (call15 - upon entry, the syscall dispatches the call to other (existing) U-Boot
Completed in 12 milliseconds