state terminology

From: Jan Engelhardt
Date: Sat Jan 14 2006 - 16:33:20 EST


Hi,


If this example kernel functions is called, it will generate an oops, kill
the current process, and subsequent tries to call it will hang the process
trying to do so.

static struct semaphore x;
void f(void) {
int *p = NULL;
down(&x);
*p++;
up(&x);
}

Is there a specific term (other than "hang") associated with this
situation? It's not a "dead-lock", because there is no other process
(anymore) which could potentially up the semaphore.


Jan Engelhardt
--
| Alphagate Systems, http://alphagate.hopto.org/
| jengelh's site, http://jengelh.hopto.org/
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/