~serge-hallyn/ubuntu/raring/libvirt/libvirt-hugepages

« back to all changes in this revision

Viewing changes to gnulib/tests/spawn.in.h

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2012-05-13 15:44:12 UTC
  • mfrom: (1.2.13)
  • Revision ID: package-import@ubuntu.com-20120513154412-fgmn5sxqdzgnzlx3
Tags: 0.9.12-0ubuntu1
* New upstream version:
  * Synchronize with debian packaging:
    - debian/control: Update build depends.
    - debian/libvirt-bin.postrm: Cleanup /var/log/libvirt
      on purge.
    - Bump standards verson (no changes).
    - debian/patches/Don-t-fail-if-we-can-t-setup-avahi.patch: Added
  * Dropped patches:
    - debian/patches/Debianize-libvirt-guests.patch
    - debian/patches/rewrite-lxc-controller-eof-handling-yet-again
    - debian/patches/ubuntu/libnl13.patch
    - debian/patches/ubuntu/fix-lxc-startup-error.patch
    - debian/patches/ubuntu/fix-bridge-fd.patch
    - debian/patches/ubuntu/skip-labelling-network-disks.patch
    - debian/patches/ubuntu/xen-xend-shutdown-detection.patch
    - debian/patches/ubuntu/xen-config-no-vfb-for-hvm.patch
    - debian/patches/debian/Disable-daemon-start-test.patch
    - debian/patches/debian/Disable-gnulib-s-test-nonplocking-pipe.sh.patch
    - debian/patches/ubuntu/9006-default-config-test-case.patch
    - debian/patches/fix-block-migration.patch
    - debian/patches/ubuntu/9022-qemu-unescape-HMP-commands-before-converting-them-to.patch
    - debian/patches/ubuntu/9023-qemu-change-rbd-auth_supported-separation-character-.patch
    - debian/patches/ubuntu/9024-qemu-allow-snapshotting-of-sheepdog-and-rbd-disks.patch
    - debian/patches/9025-qemu-change-rbd-auth_supported-separation-character-.patch
    - debian/patches/ubuntu/arm-gcc-workaround.patch
  * Rediffed:
    - debian/patches/Allow-libvirt-group-to-access-the-socket.patch
    - debian/patches/Disable-failing-virnetsockettest.patch
    - debian/patches/dnsmasq-as-priv-user
    - debian/patches/9002-better_default_uri_virsh.patch
  * debian/control: Add libnl-route-3-dev ass a build depends.
  * debian/patches/libnl3-build-fix.patch: Fix build with libnl3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- buffer-read-only: t -*- vi: set ro: */
2
 
/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
3
1
/* Definitions for POSIX spawn interface.
4
 
   Copyright (C) 2000, 2003-2004, 2008-2011 Free Software Foundation, Inc.
 
2
   Copyright (C) 2000, 2003-2004, 2008-2012 Free Software Foundation, Inc.
5
3
   This file is part of the GNU C Library.
6
4
 
7
5
   This program is free software: you can redistribute it and/or modify
120
118
#endif
121
119
 
122
120
 
123
 
/* Flags to be set in the `posix_spawnattr_t'.  */
 
121
/* Flags to be set in the 'posix_spawnattr_t'.  */
124
122
#if @HAVE_POSIX_SPAWN@
125
123
/* Use the values from the system, but provide the missing ones.  */
126
124
# ifndef POSIX_SPAWN_SETSCHEDPARAM
220
218
#endif
221
219
 
222
220
#if @GNULIB_POSIX_SPAWNP@
223
 
/* Similar to `posix_spawn' but search for FILE in the PATH.
 
221
/* Similar to 'posix_spawn' but search for FILE in the PATH.
224
222
 
225
223
   This function is a possible cancellation points and therefore not
226
224
   marked with __THROW.  */
265
263
 
266
264
 
267
265
#if @GNULIB_POSIX_SPAWNATTR_INIT@
268
 
/* Initialize data structure with attributes for `spawn' to default values.  */
 
266
/* Initialize data structure with attributes for 'spawn' to default values.  */
269
267
# if @REPLACE_POSIX_SPAWN@
270
268
#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
271
269
#   define posix_spawnattr_init rpl_posix_spawnattr_init
714
712
 
715
713
 
716
714
#if @GNULIB_POSIX_SPAWN_FILE_ACTIONS_INIT@
717
 
/* Initialize data structure for file attribute for `spawn' call.  */
 
715
/* Initialize data structure for file attribute for 'spawn' call.  */
718
716
# if @REPLACE_POSIX_SPAWN@
719
717
#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
720
718
#   define posix_spawn_file_actions_init rpl_posix_spawn_file_actions_init
775
773
 
776
774
#if @GNULIB_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN@
777
775
/* Add an action to FILE-ACTIONS which tells the implementation to call
778
 
   `open' for the given file during the `spawn' call.  */
779
 
# if @REPLACE_POSIX_SPAWN@
 
776
   'open' for the given file during the 'spawn' call.  */
 
777
# if @REPLACE_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN@
780
778
#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
781
779
#   define posix_spawn_file_actions_addopen rpl_posix_spawn_file_actions_addopen
782
780
#  endif
814
812
 
815
813
#if @GNULIB_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE@
816
814
/* Add an action to FILE-ACTIONS which tells the implementation to call
817
 
   `close' for the given file descriptor during the `spawn' call.  */
818
 
# if @REPLACE_POSIX_SPAWN@
 
815
   'close' for the given file descriptor during the 'spawn' call.  */
 
816
# if @REPLACE_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE@
819
817
#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
820
818
#   define posix_spawn_file_actions_addclose rpl_posix_spawn_file_actions_addclose
821
819
#  endif
845
843
 
846
844
#if @GNULIB_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2@
847
845
/* Add an action to FILE-ACTIONS which tells the implementation to call
848
 
   `dup2' for the given file descriptors during the `spawn' call.  */
849
 
# if @REPLACE_POSIX_SPAWN@
 
846
   'dup2' for the given file descriptors during the 'spawn' call.  */
 
847
# if @REPLACE_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2@
850
848
#  if !(defined __cplusplus && defined GNULIB_NAMESPACE)
851
849
#   define posix_spawn_file_actions_adddup2 rpl_posix_spawn_file_actions_adddup2
852
850
#  endif