Ignore:
Timestamp:
Jun 29, 2017, 2:27:35 PM (7 years ago)
Author:
max@…
Message:

add the and/or ops

File:
1 edited

Legend:

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

    r96 r98  
    8686                                uint32_t mask )
    8787{
    88         x86_panic((char *)__func__);
    89         return 0;
     88        return atomic_and_32((volatile uint32_t *)xp, mask);
    9089}
    9190
     
    9392                               uint32_t mask )
    9493{
    95         x86_panic((char *)__func__);
    96         return 0;
     94        return atomic_or_32((volatile uint32_t *)xp, mask);
    9795}
    9896
Note: See TracChangeset for help on using the changeset viewer.