Rename microkernel/cmdPkt.h to command_packet.h

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

Change-Id: I608404a762cf9d1100d58fe80c82c0e40ada2ff1
Signed-off-by: Allan Stephens <allan.stephens@windriver.com>
This commit is contained in:
Allan Stephens 2015-06-19 10:09:45 -04:00 committed by Anas Nashif
commit bba56b1c8a
4 changed files with 7 additions and 7 deletions

View file

@ -1,4 +1,4 @@
/* cmdPkt.h - statically allocated command packet header file */
/* command_packet.h - command packet header file */
/*
* Copyright (c) 2012-2014 Wind River Systems, Inc.
@ -30,8 +30,8 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef __INCcmdPkth
#define __INCcmdPkth
#ifndef _COMMAND_PACKET_H
#define _COMMAND_PACKET_H
#ifdef __cplusplus
extern "C" {
@ -86,4 +86,4 @@ extern cmdPkt_t *_cmd_pkt_get(struct cmd_pkt_set *pSet);
}
#endif
#endif /* __INCcmdPkth */
#endif /* _COMMAND_PACKET_H */

View file

@ -37,7 +37,7 @@
extern "C" {
#endif
#include <microkernel/cmdPkt.h>
#include <microkernel/command_packet.h>
/* well-known events */

View file

@ -37,7 +37,7 @@
extern "C" {
#endif
#include <microkernel/cmdPkt.h>
#include <microkernel/command_packet.h>
extern void isr_sem_give(ksem_t sema, struct cmd_pkt_set *pSet);
extern void fiber_sem_give(ksem_t sema, struct cmd_pkt_set *pSet);

View file

@ -54,7 +54,7 @@ that have an ISR component should use their own command packet set.
#include <nanokernel.h>
#include <arch/cpu.h>
#include <microkernel/cmdPkt.h>
#include <microkernel/command_packet.h>
#include <minik.h>
#include <sections.h>