Ignore:
Timestamp:
2025-04-09T16:36:30Z (6 days ago)
Author:
GitHub <noreply@…>
Children:
3acb63b5
Parents:
2c94501 (diff), 597fa24 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Wayne Thornton <wmthornton-dev@…> (2025-04-09 16:36:30)
git-committer:
GitHub <noreply@…> (2025-04-09 16:36:30)
Message:

Merge pull request #3 from HelenOS/master

Enable static initialization of kernel synchronization primitives

File:
1 edited

Legend:

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

    r2c94501 r9f945464  
    5656} mutex_t;
    5757
     58#define MUTEX_INITIALIZER(name, mtype) (mutex_t) { \
     59        .type = (mtype), \
     60        .sem = SEMAPHORE_INITIALIZER((name).sem, 1), \
     61        .owner = NULL, \
     62        .nesting = 0, \
     63}
     64
     65#define MUTEX_INITIALIZE(name, mtype) \
     66        mutex_t name = MUTEX_INITIALIZER(name, mtype)
     67
    5868extern void mutex_initialize(mutex_t *, mutex_type_t);
    5969extern bool mutex_locked(mutex_t *);
Note: See TracChangeset for help on using the changeset viewer.