Документ взят из кэша поисковой машины. Адрес
оригинального документа
: http://rtm-cs.sinp.msu.ru/manual/faq/SystemCall.html
Дата изменения: Fri Oct 11 17:20:08 1996 Дата индексирования: Mon Oct 1 20:38:03 2012 Кодировка: |
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] |