Changeset 06e1e95 in mainline for kernel/generic/include/synch


Ignore:
Timestamp:
2006-09-14T17:09:21Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f1d1f5d3
Parents:
e5ecc02
Message:

C99 compliant header guards (hopefully) everywhere in the kernel.
Formatting and indentation changes.
Small improvements in sparc64.

Location:
kernel/generic/include/synch
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/synch/condvar.h

    re5ecc02 r06e1e95  
    2727 */
    2828
    29  /** @addtogroup sync
     29/** @addtogroup sync
    3030 * @{
    3131 */
     
    3333 */
    3434
    35 #ifndef __CONDVAR_H__
    36 #define __CONDVAR_H__
     35#ifndef KERN_CONDVAR_H_
     36#define KERN_CONDVAR_H_
    3737
    3838#include <arch/types.h>
     
    5757#endif
    5858
    59  /** @}
     59/** @}
    6060 */
    61 
  • kernel/generic/include/synch/futex.h

    re5ecc02 r06e1e95  
    3333 */
    3434
    35 #ifndef __FUTEX_H__
    36 #define __FUTEX_H__
     35#ifndef KERN_FUTEX_H_
     36#define KERN_FUTEX_H_
    3737
    3838#include <arch/types.h>
     
    6060/** @}
    6161 */
    62 
  • kernel/generic/include/synch/mutex.h

    re5ecc02 r06e1e95  
    2727 */
    2828
    29  /** @addtogroup sync
     29/** @addtogroup sync
    3030 * @{
    3131 */
     
    3333 */
    3434
    35 #ifndef __MUTEX_H__
    36 #define __MUTEX_H__
     35#ifndef KERN_MUTEX_H_
     36#define KERN_MUTEX_H_
    3737
    3838#include <arch/types.h>
     
    6060#endif
    6161
    62  /** @}
     62/** @}
    6363 */
    64 
  • kernel/generic/include/synch/rwlock.h

    re5ecc02 r06e1e95  
    2727 */
    2828
    29  /** @addtogroup sync
     29/** @addtogroup sync
    3030 * @{
    3131 */
     
    3333 */
    3434
    35 #ifndef __RWLOCK_H__
    36 #define __RWLOCK_H__
     35#ifndef KERN_RWLOCK_H_
     36#define KERN_RWLOCK_H_
    3737
    3838#include <arch/types.h>
     
    7575#endif
    7676
    77 
    78  /** @}
     77/** @}
    7978 */
    80 
  • kernel/generic/include/synch/semaphore.h

    re5ecc02 r06e1e95  
    2727 */
    2828
    29  /** @addtogroup sync
     29/** @addtogroup sync
    3030 * @{
    3131 */
     
    3333 */
    3434
    35 #ifndef __SEMAPHORE_H__
    36 #define __SEMAPHORE_H__
     35#ifndef KERN_SEMAPHORE_H_
     36#define KERN_SEMAPHORE_H_
    3737
    3838#include <arch/types.h>
     
    5959#endif
    6060
    61 
    62  /** @}
     61/** @}
    6362 */
    64 
  • kernel/generic/include/synch/spinlock.h

    re5ecc02 r06e1e95  
    2727 */
    2828
    29  /** @addtogroup sync
     29/** @addtogroup sync
    3030 * @{
    3131 */
     
    3333 */
    3434
    35 #ifndef __SPINLOCK_H__
    36 #define __SPINLOCK_H__
     35#ifndef KERN_SPINLOCK_H_
     36#define KERN_SPINLOCK_H_
    3737
    3838#include <arch/types.h>
     
    117117#endif
    118118
    119  /** @}
     119/** @}
    120120 */
    121 
  • kernel/generic/include/synch/synch.h

    re5ecc02 r06e1e95  
    2727 */
    2828
    29  /** @addtogroup sync
     29/** @addtogroup sync
    3030 * @{
    3131 */
     
    3333 */
    3434
    35 #ifndef __SYNCH_H__
    36 #define __SYNCH_H__
     35#ifndef KERN_SYNCH_H_
     36#define KERN_SYNCH_H_
    3737
    3838#define SYNCH_NO_TIMEOUT        0       /**< Request with no timeout. */
     
    5353#endif
    5454
    55  /** @}
     55/** @}
    5656 */
    57 
  • kernel/generic/include/synch/waitq.h

    re5ecc02 r06e1e95  
    2727 */
    2828
    29  /** @addtogroup sync
     29/** @addtogroup sync
    3030 * @{
    3131 */
     
    3333 */
    3434
    35 #ifndef __WAITQ_H__
    36 #define __WAITQ_H__
     35#ifndef KERN_WAITQ_H_
     36#define KERN_WAITQ_H_
    3737
    3838#include <arch/types.h>
     
    7272#endif
    7373
    74  /** @}
     74/** @}
    7575 */
    76 
Note: See TracChangeset for help on using the changeset viewer.