Rename microkernel/sema.h to semaphore.h

Now spells out the name of the associated microkernel object in full.

Change-Id: I6c2cacff68d150eaea5d118d582c5f8246911924
Signed-off-by: Allan Stephens <allan.stephens@windriver.com>
This commit is contained in:
Allan Stephens 2015-06-19 10:07:21 -04:00 committed by Anas Nashif
commit fa74ff083e
2 changed files with 5 additions and 5 deletions

View file

@ -47,7 +47,7 @@
#include <microkernel/mutex.h>
#include <microkernel/mailbox.h>
#include <microkernel/fifo.h>
#include <microkernel/sema.h>
#include <microkernel/semaphore.h>
#include <microkernel/event.h>
#include <microkernel/memory_pool.h>
#include <microkernel/pipe.h>

View file

@ -1,4 +1,4 @@
/* microkernel/sema.h - microkernel semaphore header file */
/* microkernel/semaphore.h - microkernel semaphore header file */
/*
* Copyright (c) 1997-2010, 2012-2014 Wind River Systems, Inc.
@ -30,8 +30,8 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef SEMA_H
#define SEMA_H
#ifndef _SEMAPHORE_H
#define _SEMAPHORE_H
#ifdef __cplusplus
extern "C" {
@ -63,4 +63,4 @@ extern ksem_t _task_sem_group_take(ksemg_t semagroup, int32_t time);
}
#endif
#endif /* SEMA_H */
#endif /* _SEMAPHORE_H */