VirtualBox

Ignore:
Timestamp:
Aug 14, 2015 3:16:38 PM (10 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
102121
Message:

*: scm cleanup run.

Location:
trunk/src/VBox/Runtime/r0drv/linux
Files:
19 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/r0drv/linux/RTLogWriteDebugger-r0drv-linux.c

    r57276 r57358  
    2626
    2727
    28 /*******************************************************************************
    29 *   Header Files                                                               *
    30 *******************************************************************************/
     28/*********************************************************************************************************************************
     29*   Header Files                                                                                                                 *
     30*********************************************************************************************************************************/
    3131#include "the-linux-kernel.h"
    3232#include "internal/iprt.h"
  • trunk/src/VBox/Runtime/r0drv/linux/alloc-r0drv-linux.c

    r57294 r57358  
    2626
    2727
    28 /*******************************************************************************
    29 *   Header Files                                                               *
    30 *******************************************************************************/
     28/*********************************************************************************************************************************
     29*   Header Files                                                                                                                 *
     30*********************************************************************************************************************************/
    3131#include "the-linux-kernel.h"
    3232#include "internal/iprt.h"
     
    6464
    6565
    66 /*******************************************************************************
    67 *   Structures and Typedefs                                                    *
    68 *******************************************************************************/
     66/*********************************************************************************************************************************
     67*   Structures and Typedefs                                                                                                      *
     68*********************************************************************************************************************************/
    6969#ifdef RTMEMALLOC_EXEC_VM_AREA
    7070/**
     
    8888
    8989
    90 /*******************************************************************************
    91 *   Global Variables                                                           *
    92 *******************************************************************************/
     90/*********************************************************************************************************************************
     91*   Global Variables                                                                                                             *
     92*********************************************************************************************************************************/
    9393#ifdef RTMEMALLOC_EXEC_HEAP
    9494/** The heap. */
  • trunk/src/VBox/Runtime/r0drv/linux/assert-r0drv-linux.c

    r57276 r57358  
    2626
    2727
    28 /*******************************************************************************
    29 *   Header Files                                                               *
    30 *******************************************************************************/
     28/*********************************************************************************************************************************
     29*   Header Files                                                                                                                 *
     30*********************************************************************************************************************************/
    3131#include "the-linux-kernel.h"
    3232#include "internal/iprt.h"
  • trunk/src/VBox/Runtime/r0drv/linux/initterm-r0drv-linux.c

    r57276 r57358  
    2626
    2727
    28 /*******************************************************************************
    29 *   Header Files                                                               *
    30 *******************************************************************************/
     28/*********************************************************************************************************************************
     29*   Header Files                                                                                                                 *
     30*********************************************************************************************************************************/
    3131#include "the-linux-kernel.h"
    3232#include "internal/iprt.h"
     
    3636
    3737
    38 /*******************************************************************************
    39 *   Global Variables                                                           *
    40 *******************************************************************************/
     38/*********************************************************************************************************************************
     39*   Global Variables                                                                                                             *
     40*********************************************************************************************************************************/
    4141/** The IPRT work queue. */
    4242#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 5, 41)
     
    4747
    4848
    49 /*******************************************************************************
    50 *   Internal Functions                                                         *
    51 *******************************************************************************/
     49/*********************************************************************************************************************************
     50*   Internal Functions                                                                                                           *
     51*********************************************************************************************************************************/
    5252/* in alloc-r0drv0-linux.c */
    5353DECLHIDDEN(void) rtR0MemExecCleanup(void);
  • trunk/src/VBox/Runtime/r0drv/linux/memobj-r0drv-linux.c

    r57276 r57358  
    2626
    2727
    28 /*******************************************************************************
    29 *   Header Files                                                               *
    30 *******************************************************************************/
     28/*********************************************************************************************************************************
     29*   Header Files                                                                                                                 *
     30*********************************************************************************************************************************/
    3131#include "the-linux-kernel.h"
    3232
     
    4040
    4141
    42 /*******************************************************************************
    43 *   Defined Constants And Macros                                               *
    44 *******************************************************************************/
     42/*********************************************************************************************************************************
     43*   Defined Constants And Macros                                                                                                 *
     44*********************************************************************************************************************************/
    4545/* early 2.6 kernels */
    4646#ifndef PAGE_SHARED_EXEC
     
    6767
    6868
    69 /*******************************************************************************
    70 *   Structures and Typedefs                                                    *
    71 *******************************************************************************/
     69/*********************************************************************************************************************************
     70*   Structures and Typedefs                                                                                                      *
     71*********************************************************************************************************************************/
    7272/**
    7373 * The Darwin version of the memory object structure.
  • trunk/src/VBox/Runtime/r0drv/linux/memuserkernel-r0drv-linux.c

    r57276 r57358  
    2626
    2727
    28 /*******************************************************************************
    29 *   Header Files                                                               *
    30 *******************************************************************************/
     28/*********************************************************************************************************************************
     29*   Header Files                                                                                                                 *
     30*********************************************************************************************************************************/
    3131#include "the-linux-kernel.h"
    3232#include "internal/iprt.h"
  • trunk/src/VBox/Runtime/r0drv/linux/mp-r0drv-linux.c

    r57276 r57358  
    2626
    2727
    28 /*******************************************************************************
    29 *   Header Files                                                               *
    30 *******************************************************************************/
     28/*********************************************************************************************************************************
     29*   Header Files                                                                                                                 *
     30*********************************************************************************************************************************/
    3131#include "the-linux-kernel.h"
    3232#include "internal/iprt.h"
  • trunk/src/VBox/Runtime/r0drv/linux/mpnotification-r0drv-linux.c

    r57276 r57358  
    2626
    2727
    28 /*******************************************************************************
    29 *   Header Files                                                               *
    30 *******************************************************************************/
     28/*********************************************************************************************************************************
     29*   Header Files                                                                                                                 *
     30*********************************************************************************************************************************/
    3131#include "the-linux-kernel.h"
    3232#include "internal/iprt.h"
     
    4141#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 5, 71) && defined(CONFIG_SMP)
    4242
    43 /*******************************************************************************
    44 *   Internal Functions                                                         *
    45 *******************************************************************************/
     43
     44/*********************************************************************************************************************************
     45*   Internal Functions                                                                                                           *
     46*********************************************************************************************************************************/
    4647static int rtMpNotificationLinuxCallback(struct notifier_block *pNotifierBlock, unsigned long ulNativeEvent, void *pvCpu);
    4748
    4849
    49 /*******************************************************************************
    50 *   Global Variables                                                           *
    51 *******************************************************************************/
     50/*********************************************************************************************************************************
     51*   Global Variables                                                                                                             *
     52*********************************************************************************************************************************/
    5253/**
    5354 * The notifier block we use for registering the callback.
  • trunk/src/VBox/Runtime/r0drv/linux/process-r0drv-linux.c

    r56290 r57358  
    2626
    2727
    28 /*******************************************************************************
    29 *   Header Files                                                               *
    30 *******************************************************************************/
     28/*********************************************************************************************************************************
     29*   Header Files                                                                                                                 *
     30*********************************************************************************************************************************/
    3131#include "the-linux-kernel.h"
    3232#include "internal/iprt.h"
  • trunk/src/VBox/Runtime/r0drv/linux/semevent-r0drv-linux.c

    r57276 r57358  
    2626
    2727
    28 /*******************************************************************************
    29 *   Header Files                                                               *
    30 *******************************************************************************/
     28/*********************************************************************************************************************************
     29*   Header Files                                                                                                                 *
     30*********************************************************************************************************************************/
    3131#define RTSEMEVENT_WITHOUT_REMAPPING
    3232#include "the-linux-kernel.h"
     
    4444
    4545
    46 /*******************************************************************************
    47 *   Structures and Typedefs                                                    *
    48 *******************************************************************************/
     46/*********************************************************************************************************************************
     47*   Structures and Typedefs                                                                                                      *
     48*********************************************************************************************************************************/
    4949/**
    5050 * Linux event semaphore.
  • trunk/src/VBox/Runtime/r0drv/linux/semeventmulti-r0drv-linux.c

    r57276 r57358  
    2626
    2727
    28 /*******************************************************************************
    29 *   Header Files                                                               *
    30 *******************************************************************************/
     28/*********************************************************************************************************************************
     29*   Header Files                                                                                                                 *
     30*********************************************************************************************************************************/
    3131#define RTSEMEVENTMULTI_WITHOUT_REMAPPING
    3232#include "the-linux-kernel.h"
     
    4444
    4545
    46 /*******************************************************************************
    47 *   Defined Constants And Macros                                               *
    48 *******************************************************************************/
     46/*********************************************************************************************************************************
     47*   Defined Constants And Macros                                                                                                 *
     48*********************************************************************************************************************************/
    4949/** @name fStateAndGen values
    5050 * @{ */
     
    6262
    6363
    64 /*******************************************************************************
    65 *   Structures and Typedefs                                                    *
    66 *******************************************************************************/
     64/*********************************************************************************************************************************
     65*   Structures and Typedefs                                                                                                      *
     66*********************************************************************************************************************************/
    6767/**
    6868 * Linux event semaphore.
  • trunk/src/VBox/Runtime/r0drv/linux/semfastmutex-r0drv-linux.c

    r57276 r57358  
    2626
    2727
    28 /*******************************************************************************
    29 *   Header Files                                                               *
    30 *******************************************************************************/
     28/*********************************************************************************************************************************
     29*   Header Files                                                                                                                 *
     30*********************************************************************************************************************************/
    3131#include "the-linux-kernel.h"
    3232#include "internal/iprt.h"
     
    4343
    4444
    45 /*******************************************************************************
    46 *   Structures and Typedefs                                                    *
    47 *******************************************************************************/
     45/*********************************************************************************************************************************
     46*   Structures and Typedefs                                                                                                      *
     47*********************************************************************************************************************************/
    4848/**
    4949 * Wrapper for the linux semaphore structure.
  • trunk/src/VBox/Runtime/r0drv/linux/semmutex-r0drv-linux.c

    r57281 r57358  
    2626
    2727
    28 /*******************************************************************************
    29 *   Header Files                                                               *
    30 *******************************************************************************/
     28/*********************************************************************************************************************************
     29*   Header Files                                                                                                                 *
     30*********************************************************************************************************************************/
    3131#define RTSEMMUTEX_WITHOUT_REMAPPING
    3232#include "the-linux-kernel.h"
     
    4343
    4444
    45 /*******************************************************************************
    46 *   Structures and Typedefs                                                    *
    47 *******************************************************************************/
     45/*********************************************************************************************************************************
     46*   Structures and Typedefs                                                                                                      *
     47*********************************************************************************************************************************/
    4848typedef struct RTSEMMUTEXLNXWAITER
    4949{
  • trunk/src/VBox/Runtime/r0drv/linux/spinlock-r0drv-linux.c

    r57330 r57358  
    2626
    2727
    28 /*******************************************************************************
    29 *   Header Files                                                               *
    30 *******************************************************************************/
     28/*********************************************************************************************************************************
     29*   Header Files                                                                                                                 *
     30*********************************************************************************************************************************/
    3131#include "the-linux-kernel.h"
    3232#include "internal/iprt.h"
     
    4545
    4646
    47 /*******************************************************************************
    48 *   Structures and Typedefs                                                    *
    49 *******************************************************************************/
     47/*********************************************************************************************************************************
     48*   Structures and Typedefs                                                                                                      *
     49*********************************************************************************************************************************/
    5050/**
    5151 * Wrapper for the spinlock_t structure.
  • trunk/src/VBox/Runtime/r0drv/linux/thread-r0drv-linux.c

    r57276 r57358  
    2626
    2727
    28 /*******************************************************************************
    29 *   Header Files                                                               *
    30 *******************************************************************************/
     28/*********************************************************************************************************************************
     29*   Header Files                                                                                                                 *
     30*********************************************************************************************************************************/
    3131#include "the-linux-kernel.h"
    3232#include "internal/iprt.h"
     
    4242
    4343
    44 /*******************************************************************************
    45 *   Global Variables                                                           *
    46 *******************************************************************************/
     44/*********************************************************************************************************************************
     45*   Global Variables                                                                                                             *
     46*********************************************************************************************************************************/
    4747#ifndef CONFIG_PREEMPT
    4848/** Per-cpu preemption counters. */
  • trunk/src/VBox/Runtime/r0drv/linux/thread2-r0drv-linux.c

    r57276 r57358  
    2626
    2727
    28 /*******************************************************************************
    29 *   Header Files                                                               *
    30 *******************************************************************************/
     28/*********************************************************************************************************************************
     29*   Header Files                                                                                                                 *
     30*********************************************************************************************************************************/
    3131#include "the-linux-kernel.h"
    3232#include "internal/iprt.h"
  • trunk/src/VBox/Runtime/r0drv/linux/threadctxhooks-r0drv-linux.c

    r57276 r57358  
    2626
    2727
    28 /*******************************************************************************
    29 *   Header Files                                                               *
    30 *******************************************************************************/
     28/*********************************************************************************************************************************
     29*   Header Files                                                                                                                 *
     30*********************************************************************************************************************************/
    3131#include "the-linux-kernel.h"
    3232#include "internal/iprt.h"
     
    4949#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 18) && defined(CONFIG_PREEMPT_NOTIFIERS)
    5050
    51 /*******************************************************************************
    52 *   Structures and Typedefs                                                    *
    53 *******************************************************************************/
     51
     52/*********************************************************************************************************************************
     53*   Structures and Typedefs                                                                                                      *
     54*********************************************************************************************************************************/
    5455/**
    5556 * The internal hook object for linux.
  • trunk/src/VBox/Runtime/r0drv/linux/time-r0drv-linux.c

    r57276 r57358  
    2626
    2727
    28 /*******************************************************************************
    29 *   Header Files                                                               *
    30 *******************************************************************************/
     28/*********************************************************************************************************************************
     29*   Header Files                                                                                                                 *
     30*********************************************************************************************************************************/
    3131#define LOG_GROUP RTLOGGROUP_TIME
    3232#include "the-linux-kernel.h"
  • trunk/src/VBox/Runtime/r0drv/linux/timer-r0drv-linux.c

    r57276 r57358  
    2626
    2727
    28 /*******************************************************************************
    29 *   Header Files                                                               *
    30 *******************************************************************************/
     28/*********************************************************************************************************************************
     29*   Header Files                                                                                                                 *
     30*********************************************************************************************************************************/
    3131#include "the-linux-kernel.h"
    3232#include "internal/iprt.h"
     
    5757
    5858
    59 /*******************************************************************************
    60 *   Structures and Typedefs                                                    *
    61 *******************************************************************************/
     59/*********************************************************************************************************************************
     60*   Structures and Typedefs                                                                                                      *
     61*********************************************************************************************************************************/
    6262/**
    6363 * Timer state machine.
     
    199199
    200200
    201 /*******************************************************************************
    202 *   Internal Functions                                                         *
    203 *******************************************************************************/
     201/*********************************************************************************************************************************
     202*   Internal Functions                                                                                                           *
     203*********************************************************************************************************************************/
    204204#ifdef CONFIG_SMP
    205205static DECLCALLBACK(void) rtTimerLinuxMpEvent(RTMPEVENT enmEvent, RTCPUID idCpu, void *pvUser);
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