Penguin
Annotated edit history of ENOMEM version 7, including all changes. View license author blame.
Rev Author # Line
1 PerryLorier 1 !!!Out of memory
2
3 Insufficient kernel memory was available for your request.
6 JohnMcPherson 4
5 This almost certainly means that one or more programs on your machine has gone out of control and has used up all of the virtual memory (physical and swap) on the machine. Expect lots of weird things to happen as many programs don't check for this (for example if malloc(3) failed).
2 MarekShnur 6
4 MarekShnur 7 I found that ENOMEM is declared in /usr/include/sys/errno.h
8 %%%
2 MarekShnur 9 but in mine linux distribution it is defined in /usr/include/asm/errno.h
5 PerryLorier 10
11 You should never need to include anything from asm/ bits/ or linux/ directly. For example:
6 JohnMcPherson 12 * errno.h includes bits/errno.h
13 * bits/errno.h includes linux/errno.h and defines [ENOTSUP] as an alias for [ENOTSUPPORTED], and [EDOM], [EILSEQ] and [ERANGE], since these are only ever generated by libc, not by the kernel
14 * linux/errno.h includes asm/errno.h and defines [ERESTARTSYS], [ERESTARTNOINTR], [ERESTARTNOHAND], [ENOIOCTLCMD], [EBADHANDLE], [ENOTSYNC], [EBADCOOKIE], [ENOTSUPP], [ESERVERFAULT], [ETOOSMALL], [EBADTYPE], [EJUKEBOX] (but only for the kernel, these are never defined in userspace)
15 * asm/errno.h has the #define's for all the usual errno's
5 PerryLorier 16
17 so, you should #include <errno.h> to get all the errno's, or you'll miss some :)
7 CraigBox 18
19 ------
20 Do not confuse this with Eminem! :)
The following authors of this page have not agreed to the WlugWikiLicense. As such copyright to all content on this page is retained by the original authors.
  • MarekShnur
The following authors of this page have agreed to the WlugWikiLicense.

lib/plugin/WlugLicense.php (In template 'html'):99: Warning: Invalid argument supplied for foreach()

lib/plugin/WlugLicense.php (In template 'html'):111: Notice: Undefined variable: ignore_authors

lib/plugin/WlugLicense.php (In template 'html'):111: Notice: Undefined variable: ignore_authors