VirtualBox

Ignore:
Timestamp:
Oct 29, 2015 4:30:44 AM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
103777
Message:

EFI/Firmware: Merged in the svn:eol-style, svn:mime-type and trailing whitespace cleanup that was done after the initial UDK2014.SP1 import: svn merge /vendor/edk2/UDK2014.SP1 /vendor/edk2/current .

Location:
trunk/src/VBox/Devices/EFI/Firmware
Files:
27 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/EFI/Firmware

  • trunk/src/VBox/Devices/EFI/Firmware/StdLib/Include/Arm/machine/frame.h

    r48674 r58466  
    120120
    121121#endif /* _ARM_FRAME_H_ */
    122  
     122
    123123/* End of frame.h */
  • trunk/src/VBox/Devices/EFI/Firmware/StdLib/Include/Efi/EfiSocketLib.h

    r58459 r58466  
    181181  @param [in] pThis        Pointer to the EFI_SERVICE_BINDING_PROTOCOL instance.
    182182  @param [in] pChildHandle Pointer to the handle of the child to create. If it is NULL,
    183                            then a new handle is created. If it is a pointer to an existing UEFI handle, 
     183                           then a new handle is created. If it is a pointer to an existing UEFI handle,
    184184                           then the protocol is added to the existing UEFI handle.
    185185
     
    200200/**
    201201  Destroys a child handle with a protocol installed on it.
    202  
     202
    203203  When the socket application is linked against UseSocketDxe, the ::close
    204204  routine indirectly calls this routine in SocketDxe to undo the operations
     
    437437  is designed to be polled by the connect routine for completion
    438438  of the network connection.
    439  
     439
    440440  @param [in] pSocketProtocol Address of an ::EFI_SOCKET_PROTOCOL structure.
    441441
    442442  @param [in] pSockAddr       Network address of the remote system.
    443    
     443
    444444  @param [in] SockAddrLength  Length in bytes of the network address.
    445  
     445
    446446  @param [out] pErrno   Address to receive the errno value upon completion.
    447  
     447
    448448  @retval EFI_SUCCESS   The connection was successfully established.
    449449  @retval EFI_NOT_READY The connection is in progress, call this routine again.
     
    469469
    470470  @param [in] pSocketProtocol Address of an ::EFI_SOCKET_PROTOCOL structure.
    471  
     471
    472472  @param [out] pAddress       Network address to receive the local system address
    473473
     
    497497
    498498  @param [in] pSocketProtocol Address of an ::EFI_SOCKET_PROTOCOL structure.
    499  
     499
    500500  @param [out] pAddress       Network address to receive the remote system address
    501501
     
    650650
    651651  @param [in] pSocketProtocol Address of an ::EFI_SOCKET_PROTOCOL structure.
    652  
     652
    653653  @param [in] Flags           Message control flags
    654  
     654
    655655  @param [in] BufferLength    Length of the the buffer
    656  
     656
    657657  @param [in] pBuffer         Address of a buffer to receive the data.
    658  
     658
    659659  @param [in] pDataLength     Number of received data bytes in the buffer.
    660660
     
    690690
    691691  @param [in] pSocketProtocol Address of an ::EFI_SOCKET_PROTOCOL structure.
    692  
     692
    693693  @param [in] How             Which operations to stop
    694  
     694
    695695  @param [out] pErrno         Address to receive the errno value upon completion.
    696696
     
    718718
    719719  @param [in] pSocketProtocol Address of an ::EFI_SOCKET_PROTOCOL structure.
    720  
     720
    721721  @param [in] Flags           Message control flags
    722  
     722
    723723  @param [in] BufferLength    Length of the the buffer
    724  
     724
    725725  @param [in] pBuffer         Address of a buffer containing the data to send
    726  
     726
    727727  @param [in] pDataLength     Address to receive the number of data bytes sent
    728728
  • trunk/src/VBox/Devices/EFI/Firmware/StdLib/Include/Ia32/machine/asm.h

    r48674 r58466  
    108108#define IDTVEC(name) \
    109109        ALIGN_TEXT; .globl X ## name; .type X ## name,@function; X ## name:
    110 #else 
     110#else
    111111#define IDTVEC(name) \
    112112        ALIGN_TEXT; .globl X/**/name; .type X/**/name,@function; X/**/name:
    113 #endif /* __STDC__ */ 
    114 #else 
    115 #ifdef __STDC__
    116 #define IDTVEC(name) \
    117         ALIGN_TEXT; .globl _X ## name; .type _X ## name,@function; _X ## name: 
     113#endif /* __STDC__ */
     114#else
     115#ifdef __STDC__
     116#define IDTVEC(name) \
     117        ALIGN_TEXT; .globl _X ## name; .type _X ## name,@function; _X ## name:
    118118#else
    119119#define IDTVEC(name) \
     
    152152#  define _PROF_PROLOGUE        \
    153153        pushl %ebp; movl %esp,%ebp; call PIC_PLT(__mcount); popl %ebp
    154 # else 
     154# else
    155155#  define _PROF_PROLOGUE        \
    156156        pushl %ebp; movl %esp,%ebp; call PIC_PLT(mcount); popl %ebp
  • trunk/src/VBox/Devices/EFI/Firmware/StdLib/Include/Ia32/machine/byte_swap.h

    r48674 r58466  
    7070__byte_swap_u16_variable(uint16_t x)
    7171{
    72         __asm volatile ("rorw $8, %w1" : "=r" (x) : "0" (x)); 
     72        __asm volatile ("rorw $8, %w1" : "=r" (x) : "0" (x));
    7373        return (x);
    7474}
  • trunk/src/VBox/Devices/EFI/Firmware/StdLib/Include/Ipf/machine/asm.h

    r48674 r58466  
    44 * Copyright (c) 1991,1990,1989,1994,1995,1996 Carnegie Mellon University
    55 * All Rights Reserved.
    6  * 
     6 *
    77 * Permission to use, copy, modify and distribute this software and its
    88 * documentation is hereby granted, provided that both the copyright
     
    1010 * software, derivative works or modified versions, and any portions
    1111 * thereof, and that both notices appear in supporting documentation.
    12  * 
     12 *
    1313 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
    1414 * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
    1515 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
    16  * 
     16 *
    1717 * Carnegie Mellon requests users of this software to return to
    18  * 
     18 *
    1919 *  Software Distribution Coordinator  or  [email protected]
    2020 *  School of Computer Science
    2121 *  Carnegie Mellon University
    2222 *  Pittsburgh PA 15213-3890
    23  * 
     23 *
    2424 * any improvements or extensions that they make and grant Carnegie Mellon
    2525 * the rights to redistribute these changes.
  • trunk/src/VBox/Devices/EFI/Firmware/StdLib/Include/Ipf/machine/bootinfo.h

    r48674 r58466  
    66 *
    77 * Author: Chris G. Demetriou
    8  * 
     8 *
    99 * Permission to use, copy, modify and distribute this software and
    1010 * its documentation is hereby granted, provided that both the copyright
     
    1212 * software, derivative works or modified versions, and any portions
    1313 * thereof, and that both notices appear in supporting documentation.
    14  * 
    15  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" 
    16  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND 
     14 *
     15 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
     16 * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
    1717 * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
    18  * 
     18 *
    1919 * Carnegie Mellon requests users of this software to return to
    2020 *
  • trunk/src/VBox/Devices/EFI/Firmware/StdLib/Include/Ipf/machine/cpu.h

    r48674 r58466  
    151151/*
    152152 * Give a profiling tick to the current process when the user profiling
    153  * buffer pages are invalid. XXX:Fixme.... On the ia64 I haven't yet figured 
     153 * buffer pages are invalid. XXX:Fixme.... On the ia64 I haven't yet figured
    154154 * out what to do about this.. XXX.
    155155 */
     
    172172
    173173
    174 /* XXX: TODO: generic microtime support kern/kern_microtime.c 
    175  * #define microtime(tv)        cc_microtime(tv) 
     174/* XXX: TODO: generic microtime support kern/kern_microtime.c
     175 * #define microtime(tv)        cc_microtime(tv)
    176176 */
    177177
  • trunk/src/VBox/Devices/EFI/Firmware/StdLib/Include/Ipf/machine/db_machdep.h

    r48674 r58466  
    7676#define ADDR_SLOT0(addr)        ( (addr) & ~(0xFUL) )
    7777#define SLOT_ADDR(addr)         ( (addr) & (0xFUL) )
    78 /* breakpoint address. 
    79  * Check for violations of pseudo offsets above 2. 
     78/* breakpoint address.
     79 * Check for violations of pseudo offsets above 2.
    8080 * Adjust for 32 bit shift within Bundle.
    8181 */
  • trunk/src/VBox/Devices/EFI/Firmware/StdLib/Include/Ipf/machine/ia64_cpu.h

    r48674 r58466  
    181181}
    182182
    183 /* 
     183/*
    184184 * Flush Instruction Cache
    185185 */
  • trunk/src/VBox/Devices/EFI/Firmware/StdLib/Include/Ipf/machine/int_limits.h

    r48674 r58466  
    8585
    8686/* 7.18.2.3 Limits of fastest minimum-width integer types */
    87  
     87
    8888/* minimum values of fastest minimum-width signed integer types */
    8989#define INT_FAST8_MIN   (-0x7fffffff-1)                 /* int_fast8_t    */
  • trunk/src/VBox/Devices/EFI/Firmware/StdLib/Include/Ipf/machine/loadfile_machdep.h

    r48674 r58466  
    5252
    5353/* XXX: cherry: This whole thing is glue between the NetBSD pread/vpbcopy etc. etc
    54  *      and the FreeBSD kern_pread/bzero etc. etc. Needs to be cleaned up 
     54 *      and the FreeBSD kern_pread/bzero etc. etc. Needs to be cleaned up
    5555 *      after discussion.
    5656 */
  • trunk/src/VBox/Devices/EFI/Firmware/StdLib/Include/Ipf/machine/pmap.h

    r48674 r58466  
    157157
    158158
    159 #define PMAP_VHPT_LOG2SIZE 16 
     159#define PMAP_VHPT_LOG2SIZE 16
    160160
    161161
  • trunk/src/VBox/Devices/EFI/Firmware/StdLib/Include/Ipf/machine/setjmp.h

    r48674 r58466  
    55 * Intel Corporation.
    66 * All rights reserved.
    7  * 
     7 *
    88 * Redistribution and use in source and binary forms, with or without
    99 * modification, are permitted provided that the following conditions
    1010 * are met:
    11  * 
     11 *
    1212 * 1. Redistributions of source code must retain the above copyright
    1313 *    notice, this list of conditions and the following disclaimer.
    14  * 
     14 *
    1515 * 2. Redistributions in binary form must reproduce the above copyright
    1616 *    notice, this list of conditions and the following disclaimer in the
    1717 *    documentation and/or other materials provided with the distribution.
    18  * 
     18 *
    1919 * 3. All advertising materials mentioning features or use of this software
    2020 *    must display the following acknowledgement:
    21  * 
     21 *
    2222 *    This product includes software developed by Intel Corporation and
    2323 *    its contributors.
    24  * 
     24 *
    2525 * 4. Neither the name of Intel Corporation or its contributors may be
    2626 *    used to endorse or promote products derived from this software
    2727 *    without specific prior written permission.
    28  * 
     28 *
    2929 * THIS SOFTWARE IS PROVIDED BY INTEL CORPORATION AND CONTRIBUTORS ``AS IS''
    3030 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     
    3838 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
    3939 * THE POSSIBILITY OF SUCH DAMAGE.
    40  * 
     40 *
    4141 * $FreeBSD: src/sys/ia64/include/setjmp.h,v 1.12 2003/07/26 08:03:43 marcel Exp $
    4242 */
  • trunk/src/VBox/Devices/EFI/Firmware/StdLib/Include/Protocol/EfiSocket.h

    r58459 r58466  
    2929
    3030/**
    31 EfiSocketLib (SocketDxe) interface 
     31EfiSocketLib (SocketDxe) interface
    3232**/
    3333typedef struct _EFI_SOCKET_PROTOCOL EFI_SOCKET_PROTOCOL;
     
    207207  is designed to be polled by the connect routine for completion
    208208  of the network connection.
    209  
     209
    210210  @param [in] pSocketProtocol Address of the ::EFI_SOCKET_PROTOCOL structure.
    211211
    212212  @param [in] pSockAddr       Network address of the remote system.
    213    
     213
    214214  @param [in] SockAddrLength  Length in bytes of the network address.
    215  
     215
    216216  @param [out] pErrno   Address to receive the errno value upon completion.
    217  
     217
    218218  @retval EFI_SUCCESS   The connection was successfully established.
    219219  @retval EFI_NOT_READY The connection is in progress, call this routine again.
     
    240240
    241241  @param [in] pSocketProtocol Address of the ::EFI_SOCKET_PROTOCOL structure.
    242  
     242
    243243  @param [out] pAddress       Network address to receive the local system address
    244244
     
    269269
    270270  @param [in] pSocketProtocol Address of the ::EFI_SOCKET_PROTOCOL structure.
    271  
     271
    272272  @param [out] pAddress       Network address to receive the remote system address
    273273
     
    427427
    428428  @param [in] pSocketProtocol Address of the ::EFI_SOCKET_PROTOCOL structure.
    429  
     429
    430430  @param [in] Flags           Message control flags
    431  
     431
    432432  @param [in] BufferLength    Length of the the buffer
    433  
     433
    434434  @param [in] pBuffer         Address of a buffer to receive the data.
    435  
     435
    436436  @param [in] pDataLength     Number of received data bytes in the buffer.
    437437
     
    468468
    469469  @param [in] pSocketProtocol Address of the ::EFI_SOCKET_PROTOCOL structure.
    470  
     470
    471471  @param [in] How             Which operations to stop
    472  
     472
    473473  @param [out] pErrno         Address to receive the errno value upon completion.
    474474
     
    530530
    531531  @param [in] pSocketProtocol Address of the ::EFI_SOCKET_PROTOCOL structure.
    532  
     532
    533533  @param [in] Flags           Message control flags
    534  
     534
    535535  @param [in] BufferLength    Length of the the buffer
    536  
     536
    537537  @param [in] pBuffer         Address of a buffer containing the data to send
    538  
     538
    539539  @param [in] pDataLength     Address to receive the number of data bytes sent
    540540
  • trunk/src/VBox/Devices/EFI/Firmware/StdLib/Include/X64/machine/asm.h

    r48674 r58466  
    7272#define IDTVEC(name) \
    7373        ALIGN_TEXT; .globl X ## name; .type X ## name,@function; X ## name:
    74 #else 
     74#else
    7575#define IDTVEC(name) \
    7676        ALIGN_TEXT; .globl X/**/name; .type X/**/name,@function; X/**/name:
    77 #endif /* __STDC__ */ 
     77#endif /* __STDC__ */
    7878#endif /* _KERNEL */
    7979
  • trunk/src/VBox/Devices/EFI/Firmware/StdLib/Include/X64/machine/byte_swap.h

    r48674 r58466  
    6262__byte_swap_u16_variable(uint16_t x)
    6363{
    64         __asm volatile ("rorw $8, %w1" : "=r" (x) : "0" (x)); 
     64        __asm volatile ("rorw $8, %w1" : "=r" (x) : "0" (x));
    6565        return (x);
    6666}
  • trunk/src/VBox/Devices/EFI/Firmware/StdLib/Include/arpa/nameser_compat.h

    r48674 r58466  
    33/* Copyright (c) 1983, 1989
    44 *    The Regents of the University of California.  All rights reserved.
    5  * 
     5 *
    66 * Redistribution and use in source and binary forms, with or without
    77 * modification, are permitted provided that the following conditions
     
    1919 *    may be used to endorse or promote products derived from this software
    2020 *    without specific prior written permission.
    21  * 
     21 *
    2222 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
    2323 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  • trunk/src/VBox/Devices/EFI/Firmware/StdLib/Include/err.h

    r48674 r58466  
    22
    33  Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>
    4   This program and the accompanying materials                         
    5   are licensed and made available under the terms and conditions of the BSD License         
    6   which accompanies this distribution.  The full text of the license may be found at       
    7   http://opensource.org/licenses/bsd-license.php                                           
    8                                                                                            
    9   THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,                     
    10   WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 
     4  This program and the accompanying materials
     5  are licensed and made available under the terms and conditions of the BSD License
     6  which accompanies this distribution.  The full text of the license may be found at
     7  http://opensource.org/licenses/bsd-license.php
     8
     9  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
     10  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
    1111**/
    1212
  • trunk/src/VBox/Devices/EFI/Firmware/StdLib/Include/glob.h

    r48674 r58466  
    6565         */
    6666        void (*gl_closedir)(void *);
    67         struct dirent *(*gl_readdir)(void *);   
     67        struct dirent *(*gl_readdir)(void *);
    6868        void *(*gl_opendir)(const char *);
    6969        int (*gl_lstat)(const char *, __gl_stat_t *);
  • trunk/src/VBox/Devices/EFI/Firmware/StdLib/Include/netatalk/at.h

    r48674 r58466  
    7171
    7272/*
    73  * Socket address, AppleTalk style.  We keep magic information in the 
     73 * Socket address, AppleTalk style.  We keep magic information in the
    7474 * zero bytes.  There are three types, NONE, CONFIG which has the phase
    7575 * and a net range, and IFACE which has the network address of an
  • trunk/src/VBox/Devices/EFI/Firmware/StdLib/Include/netinet/ip.h

    r48674 r58466  
    66 * Intel Corporation.
    77 * All rights reserved.
    8  * 
     8 *
    99 * Redistribution and use in source and binary forms, with or without
    1010 * modification, are permitted provided that the following conditions
    1111 * are met:
    12  * 
     12 *
    1313 * 1. Redistributions of source code must retain the above copyright
    1414 *    notice, this list of conditions and the following disclaimer.
    15  * 
     15 *
    1616 * 2. Redistributions in binary form must reproduce the above copyright
    1717 *    notice, this list of conditions and the following disclaimer in the
    1818 *    documentation and/or other materials provided with the distribution.
    19  * 
     19 *
    2020 * 3. All advertising materials mentioning features or use of this software
    2121 *    must display the following acknowledgement:
    22  * 
     22 *
    2323 *    This product includes software developed by the University of
    2424 *    California, Berkeley, Intel Corporation, and its contributors.
    25  * 
     25 *
    2626 * 4. Neither the name of University, Intel Corporation, or their respective
    2727 *    contributors may be used to endorse or promote products derived from
    2828 *    this software without specific prior written permission.
    29  * 
     29 *
    3030 * THIS SOFTWARE IS PROVIDED BY THE REGENTS, INTEL CORPORATION AND
    3131 * CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
  • trunk/src/VBox/Devices/EFI/Firmware/StdLib/Include/nsswitch.h

    r58464 r58466  
    5555 * Layout of:
    5656 *      uint32_t ns_src.flags
    57  */ 
     57 */
    5858        /* nsswitch.conf status codes and nsdispatch(3) return values */
    5959#define NS_SUCCESS      (1<<0)          /* entry was found */
     
    126126#define NS_FILES_CB(F,C)        { NSSRC_FILES,  F,      __UNCONST(C) },
    127127#define NS_COMPAT_CB(F,C)       { NSSRC_COMPAT, F,      __UNCONST(C) },
    128  
     128
    129129#ifdef HESIOD
    130130#   define NS_DNS_CB(F,C)       { NSSRC_DNS,    F,      __UNCONST(C) },
  • trunk/src/VBox/Devices/EFI/Firmware/StdLib/Include/stringlist.h

    r48674 r58466  
    4242
    4343#ifndef _STRINGLIST_H
    44 #define _STRINGLIST_H 
     44#define _STRINGLIST_H
    4545#include <sys/cdefs.h>
    4646#include <sys/types.h>
  • trunk/src/VBox/Devices/EFI/Firmware/StdLib/Include/sys/_posix.h

    r48674 r58466  
    3636 * It should only handle pre-processor defines.
    3737 *
    38  * See section B.2.7 of 1003.1b-1993 
     38 * See section B.2.7 of 1003.1b-1993
    3939 *
    4040 */
     
    8282 * If they specify a version including P1003.1B then they show up.
    8383 *
    84  * (Two macros are added to permit hiding new extensions while 
     84 * (Two macros are added to permit hiding new extensions while
    8585 * keeping historic BSD features - that is not done now)
    8686 *
  • trunk/src/VBox/Devices/EFI/Firmware/StdLib/Include/sys/sockio.h

    r48674 r58466  
    66 * Intel Corporation.
    77 * All rights reserved.
    8  * 
     8 *
    99 * Redistribution and use in source and binary forms, with or without
    1010 * modification, are permitted provided that the following conditions
    1111 * are met:
    12  * 
     12 *
    1313 * 1. Redistributions of source code must retain the above copyright
    1414 *    notice, this list of conditions and the following disclaimer.
    15  * 
     15 *
    1616 * 2. Redistributions in binary form must reproduce the above copyright
    1717 *    notice, this list of conditions and the following disclaimer in the
    1818 *    documentation and/or other materials provided with the distribution.
    19  * 
     19 *
    2020 * 3. All advertising materials mentioning features or use of this software
    2121 *    must display the following acknowledgement:
    22  * 
     22 *
    2323 *    This product includes software developed by the University of
    2424 *    California, Berkeley, Intel Corporation, and its contributors.
    25  * 
     25 *
    2626 * 4. Neither the name of University, Intel Corporation, or their respective
    2727 *    contributors may be used to endorse or promote products derived from
    2828 *    this software without specific prior written permission.
    29  * 
     29 *
    3030 * THIS SOFTWARE IS PROVIDED BY THE REGENTS, INTEL CORPORATION AND
    3131 * CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
  • trunk/src/VBox/Devices/EFI/Firmware/StdLib/Include/sys/sysctl.h

    r48674 r58466  
    99 * Intel Corporation.
    1010 * All rights reserved.
    11  * 
     11 *
    1212 * Redistribution and use in source and binary forms, with or without
    1313 * modification, are permitted provided that the following conditions
    1414 * are met:
    15  * 
     15 *
    1616 * 1. Redistributions of source code must retain the above copyright
    1717 *    notice, this list of conditions and the following disclaimer.
    18  * 
     18 *
    1919 * 2. Redistributions in binary form must reproduce the above copyright
    2020 *    notice, this list of conditions and the following disclaimer in the
    2121 *    documentation and/or other materials provided with the distribution.
    22  * 
     22 *
    2323 * 3. All advertising materials mentioning features or use of this software
    2424 *    must display the following acknowledgement:
    25  * 
     25 *
    2626 *    This product includes software developed by the University of
    2727 *    California, Berkeley, Intel Corporation, and its contributors.
    28  * 
     28 *
    2929 * 4. Neither the name of University, Intel Corporation, or their respective
    3030 *    contributors may be used to endorse or promote products derived from
    3131 *    this software without specific prior written permission.
    32  * 
     32 *
    3333 * THIS SOFTWARE IS PROVIDED BY THE REGENTS, INTEL CORPORATION AND
    3434 * CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
     
    9696 * be implemented.
    9797 * e.g. SYSCTL_INT(_parent, OID_AUTO, name, CTLFLAG_RW, &variable, 0, "");
    98  */ 
     98 */
    9999#define OID_AUTO        (-1)
    100100
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette