[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

sys_call_ptr_t



Hi all,
 
Can somebody help me understand this ?
 
typedef void (*sys_call_ptr_t)(void);
 
What I am concluding is this - sys_call_table is an array to store address of functions and prototype of these functions is like this
 
void func(void).
 
Am I right ?
 
In which file I can find these assignments of functions in sys_call_table ?
 
Sachin