Ignore:
Timestamp:
Jul 5, 2017, 11:05:11 AM (7 years ago)
Author:
max@…
Message:

style

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/hal/x86_64/core/hal_atomic.c

    r105 r145  
    2323#include <hal_internal.h>
    2424
    25 void hal_atomic_and( uint32_t * ptr,
    26                      int32_t    val )
     25void hal_atomic_and(uint32_t *ptr, int32_t val)
    2726{
    2827        atomic_and_32((volatile uint32_t *)ptr, val);
    2928}
    3029
    31 void hal_atomic_or( uint32_t * ptr,
    32                     int32_t    val )
     30void hal_atomic_or(uint32_t *ptr, int32_t val)
    3331{
    3432        atomic_or_32((volatile uint32_t *)ptr, val);
    3533}
    3634
    37 uint32_t hal_atomic_add( void    * ptr,
    38                          int32_t   val )
     35uint32_t hal_atomic_add(void *ptr, int32_t val)
    3936{
    4037        return atomic_add_32((volatile uint32_t *)ptr, val);
    4138}
    4239
    43 bool_t hal_atomic_cas( uint32_t * ptr,
    44                        uint32_t   old,
    45                        uint32_t   new )
     40bool_t hal_atomic_cas(uint32_t *ptr, uint32_t old, uint32_t new)
    4641{
    4742        return (atomic_cas_32((volatile uint32_t *)ptr, old, new) == old);
    4843}
    4944
    50 bool_t hal_atomic_test_set( uint32_t * ptr,
    51                             int32_t    val )
     45bool_t hal_atomic_test_set(uint32_t *ptr, int32_t val)
    5246{
    5347        x86_panic((char *)__func__);
Note: See TracChangeset for help on using the changeset viewer.