~hamo/ubuntu/precise/grub2/grub2.hi_res

« back to all changes in this revision

Viewing changes to gnulib/alloca.h

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson, Colin Watson, Robert Millan, Updated translations
  • Date: 2010-11-22 12:24:56 UTC
  • mfrom: (1.26.4 upstream) (17.3.36 sid)
  • mto: (17.3.43 sid)
  • mto: This revision was merged to the branch mainline in revision 89.
  • Revision ID: james.westby@ubuntu.com-20101122122456-y82z3sfb7k4zfdcc
Tags: 1.99~20101122-1
[ Colin Watson ]
* New Bazaar snapshot.  Too many changes to list in full, but some of the
  more user-visible ones are as follows:
  - GRUB script:
    + Function parameters, "break", "continue", "shift", "setparams",
      "return", and "!".
    + "export" command supports multiple variable names.
    + Multi-line quoted strings support.
    + Wildcard expansion.
  - sendkey support.
  - USB hotunplugging and USB serial support.
  - Rename CD-ROM to cd on BIOS.
  - Add new --boot-directory option to grub-install, grub-reboot, and
    grub-set-default; the old --root-directory option is still accepted
    but was often confusing.
  - Basic btrfs detection/UUID support (but no file reading yet).
  - bash-completion for utilities.
  - If a device is listed in device.map, always assume that it is
    BIOS-visible rather than using extra layers such as LVM or RAID.
  - Add grub-mknetdir script (closes: #550658).
  - Remove deprecated "root" command.
  - Handle RAID devices containing virtio components.
  - GRUB Legacy configuration file support (via grub-menulst2cfg).
  - Keyboard layout support (via grub-mklayout and grub-kbdcomp).
  - Check generated grub.cfg for syntax errors before saving.
  - Pause execution for at most ten seconds if any errors are displayed,
    so that the user has a chance to see them.
  - Support submenus.
  - Write embedding zone using Reed-Solomon, so that it's robust against
    being partially overwritten (closes: #550702, #591416, #593347).
  - GRUB_DISABLE_LINUX_RECOVERY and GRUB_DISABLE_NETBSD_RECOVERY merged
    into a single GRUB_DISABLE_RECOVERY variable.
  - Fix loader memory allocation failure (closes: #551627).
  - Don't call savedefault on recovery entries (closes: #589325).
  - Support triple-indirect blocks on ext2 (closes: #543924).
  - Recognise DDF1 fake RAID (closes: #603354).

[ Robert Millan ]
* Use dpkg architecture wildcards.

[ Updated translations ]
* Slovenian (Vanja Cvelbar).  Closes: #604003
* Dzongkha (dawa pemo via Tenzin Dendup).  Closes: #604102

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Memory allocation on the stack.
2
 
 
3
 
   Copyright (C) 1995, 1999, 2001-2004, 2006-2008 Free Software
4
 
   Foundation, Inc.
5
 
 
6
 
   This program is free software; you can redistribute it and/or modify it
7
 
   under the terms of the GNU General Public License as published
8
 
   by the Free Software Foundation; either version 2, or (at your option)
9
 
   any later version.
10
 
 
11
 
   This program is distributed in the hope that it will be useful,
12
 
   but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
 
   General Public License for more details.
15
 
 
16
 
   You should have received a copy of the GNU General Public
17
 
   License along with this program; if not, write to the Free Software
18
 
   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19
 
   USA.  */
20
 
 
21
 
/* Avoid using the symbol _ALLOCA_H here, as Bison assumes _ALLOCA_H
22
 
   means there is a real alloca function.  */
23
 
#ifndef _GL_ALLOCA_H
24
 
#define _GL_ALLOCA_H
25
 
 
26
 
/* alloca (N) returns a pointer to N bytes of memory
27
 
   allocated on the stack, which will last until the function returns.
28
 
   Use of alloca should be avoided:
29
 
     - inside arguments of function calls - undefined behaviour,
30
 
     - in inline functions - the allocation may actually last until the
31
 
       calling function returns,
32
 
     - for huge N (say, N >= 65536) - you never know how large (or small)
33
 
       the stack is, and when the stack cannot fulfill the memory allocation
34
 
       request, the program just crashes.
35
 
 */
36
 
 
37
 
#ifndef alloca
38
 
# ifdef __GNUC__
39
 
#  define alloca __builtin_alloca
40
 
# elif defined _AIX
41
 
#  define alloca __alloca
42
 
# elif defined _MSC_VER
43
 
#  include <malloc.h>
44
 
#  define alloca _alloca
45
 
# elif defined __DECC && defined __VMS
46
 
#  define alloca __ALLOCA
47
 
# else
48
 
#  include <stddef.h>
49
 
#  ifdef  __cplusplus
50
 
extern "C"
51
 
#  endif
52
 
void *alloca (size_t);
53
 
# endif
54
 
#endif
55
 
 
56
 
#endif /* _GL_ALLOCA_H */