Is there a system call I can use to access kernel threads? (original) (raw)
Is there a system call I can use to access kernel threads?
Recent versions of glibc has clone() defined thus:
int clone(int (*fn)(), void **stack, int flags, int argc,... /* args */);
fn | The thread routine |
---|---|
stack | The thread's stack |
flags | Flags as defined above |
argc | number of remaining parameters |
/* args */ | the parameters expected by the thread. |
[![]() |
[![]() |
[![]() |
[![]() |
[![]() |
---|---|---|---|---|
[Previous Page] | [First Page] | [Dictionary] | [Email Author] | [Next Page] |