Changeset fadd381 in mainline for uspace/libc/arch/mips32/include


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

Indentation and formatting facelift for libc.
Libc headers now have C99 compliant guards.

Location:
uspace/libc/arch/mips32/include
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • uspace/libc/arch/mips32/include/atomic.h

    rfd85ae5 rfadd381  
    2727 */
    2828
    29  /** @addtogroup libcmips32     
     29/** @addtogroup libcmips32     
    3030 * @{
    3131 */
     
    3434 */
    3535
    36 #ifndef __mips32_ATOMIC_H__
    37 #define __mips32_ATOMIC_H__
     36#ifndef LIBC_mips32_ATOMIC_H_
     37#define LIBC_mips32_ATOMIC_H_
    3838
    3939#define atomic_inc(x)   ((void) atomic_add(x, 1))
     
    7474#endif
    7575
    76  /** @}
     76/** @}
    7777 */
    78 
  • uspace/libc/arch/mips32/include/context_offset.h

    rfd85ae5 rfadd381  
    2727#define OFFSET_F30     0x5c
    2828
    29  /** @}
    30  */
    31 
  • uspace/libc/arch/mips32/include/endian.h

    rfd85ae5 rfadd381  
    2727 */
    2828
    29  /** @addtogroup libcmips32 mips32
     29/** @addtogroup libcmips32 mips32
    3030  * @brief mips32 architecture dependent parts of libc
    3131  * @ingroup lc
     
    3535 */
    3636
    37 #ifndef __mips32_ENDIAN_H__
    38 #define __mips32_ENDIAN_H__
     37#ifndef LIBC_mips32_ENDIAN_H_
     38#define LIBC_mips32_ENDIAN_H_
    3939
    40 #ifndef __LIBC__ENDIAN_H__
     40#ifndef LIBC_ENDIAN_H_
    4141# error "Never use <libarch/endian.h> directly - use <endian.h> instead."
    4242#endif
     
    4646#endif
    4747
    48 
    49  /** @}
     48/** @}
    5049 */
    51 
  • uspace/libc/arch/mips32/include/limits.h

    rfd85ae5 rfadd381  
    2727 */
    2828
    29  /** @addtogroup libcmips32     
     29/** @addtogroup libcmips32     
    3030 * @{
    3131 */
     
    3434 */
    3535
    36 #ifndef __mips32__LIMITS_H__
    37 #define __mips32__LIMITS_H__
     36#ifndef LIBC_mips32__LIMITS_H_
     37#define LIBC_mips32__LIMITS_H_
    3838
    3939# define LONG_MIN MIN_INT32
     
    4444#endif
    4545
    46 
    47 
    48  /** @}
     46/** @}
    4947 */
    50 
  • uspace/libc/arch/mips32/include/psthread.h

    rfd85ae5 rfadd381  
    2727 */
    2828
    29  /** @addtogroup libcmips32     
     29/** @addtogroup libcmips32     
    3030 * @{
    3131 */
     
    3434 */
    3535
    36 #ifndef __LIBC__mips32PSTHREAD_H__
    37 #define __LIBC__mips32PSTHREAD_H__
     36#ifndef LIBC_mips32_PSTHREAD_H_
     37#define LIBC_mips32_PSTHREAD_H_
    3838
    3939#include <types.h>
     
    8787#endif
    8888
    89  /** @}
     89/** @}
    9090 */
    91 
  • uspace/libc/arch/mips32/include/stackarg.h

    rfd85ae5 rfadd381  
    2727 */
    2828
    29  /** @addtogroup libcmips32     
     29/** @addtogroup libcmips32     
    3030 * @{
    3131 */
     
    3434 */
    3535
    36 #ifndef __LIBC_mips32_STACKARG_H__
    37 #define __LIBC_mips32_STACKARG_H__
     36#ifndef LIBC_mips32_STACKARG_H_
     37#define LIBC_mips32_STACKARG_H_
    3838
    3939/* dont allow to define it second time in stdarg.h */
     
    5959#endif
    6060
    61  /** @}
     61/** @}
    6262 */
    63 
  • uspace/libc/arch/mips32/include/thread.h

    rfd85ae5 rfadd381  
    2727 */
    2828
    29  /** @addtogroup libcmips32     
     29/** @addtogroup libcmips32     
    3030 * @{
    3131 */
     
    3636/* TLS for MIPS is described in http://www.linux-mips.org/wiki/NPTL */
    3737
    38 #ifndef __LIBC__mips32THREAD_H__
    39 #define __LIBC__mips32THREAD_H__
     38#ifndef LIBC_mips32THREAD_H_
     39#define LIBC_mips32THREAD_H_
    4040
    4141/* I did not find any specification (neither MIPS nor PowerPC), but
     
    7676#endif
    7777
    78  /** @}
     78/** @}
    7979 */
    80 
Note: See TracChangeset for help on using the changeset viewer.