[PATCH] module: Remove a extra null character at the top of module->strtab.

2012-11-27 Thread sat
From: Satoru Takeuchi There is a extra null character('\0') at the top of module->strtab for each module. Commit 59ef28b introduced this bug and this patch fixes it. Live dump log of the current linus git kernel(HEAD is 2844a4870):

Re: when or where can the case occur in "linux kernel development " about "kernel preemption"?

2005-08-27 Thread Sat.
2005/8/27, Christopher Friesen <[EMAIL PROTECTED]>: > Sat. wrote: > > the case about kernel preemption as follow : > > > > the book said "when a process that has a higher priority than the > > currenty running process is awakened ". > > > >

Re: what will connect the fork() with its following code ? a simple example below:

2005-09-06 Thread Sat.
TECTED]>: > There is no connection between a child an its parent. > The child only gets a copy of the code. > If there were a pointer to a child or to the parent, you wouldn't need any > signals. > The processes could communicate directly. > > regards > > ---