Rename nanokernel's offsets/common.h to nano_offsets.h

Eliminates unnecessary "offsets" subdirectory, and aligns file
name with gen_offset.h which resides in the same directory.

Change-Id: I8cea3bc54b5ceae3091d4a5c77c59ab826339f75
Signed-off-by: Allan Stephens <allan.stephens@windriver.com>
This commit is contained in:
Allan Stephens 2015-06-19 14:19:13 -04:00 committed by Anas Nashif
commit 22364188a4
4 changed files with 7 additions and 7 deletions

View file

@ -50,7 +50,7 @@ completeness.
#include <gen_offset.h> #include <gen_offset.h>
#include <nano_private.h> #include <nano_private.h>
#include <offsets/common.h> #include <nano_offsets.h>
/* ARCv2-specific tCCS structure member offsets */ /* ARCv2-specific tCCS structure member offsets */
GEN_OFFSET_SYM(tNANO, rirq_sp); GEN_OFFSET_SYM(tNANO, rirq_sp);

View file

@ -50,7 +50,7 @@ completeness.
#include <gen_offset.h> #include <gen_offset.h>
#include <nano_private.h> #include <nano_private.h>
#include <offsets/common.h> #include <nano_offsets.h>
/* ARM-specific tNANO structure member offsets */ /* ARM-specific tNANO structure member offsets */

View file

@ -55,7 +55,7 @@ completeness.
#include <swapstk.h> #include <swapstk.h>
#include <offsets/common.h> #include <nano_offsets.h>
/* Intel-specific tNANO structure member offsets */ /* Intel-specific tNANO structure member offsets */

View file

@ -1,4 +1,4 @@
/* offsets.h - Arch-agnostic nano kernel structure member offset definitions */ /* nano_offsets.h - nanokernel structure member offset definitions */
/* /*
* Copyright (c) 2013-2014 Wind River Systems, Inc. * Copyright (c) 2013-2014 Wind River Systems, Inc.
@ -30,8 +30,8 @@
* POSSIBILITY OF SUCH DAMAGE. * POSSIBILITY OF SUCH DAMAGE.
*/ */
#ifndef _OFFSETS_COMMON__H_ #ifndef _NANO_OFFSETS__H_
#define _OFFSETS_COMMON__H_ #define _NANO_OFFSETS__H_
/* /*
* The final link step uses the symbol _OffsetAbsSyms to force the linkage of * The final link step uses the symbol _OffsetAbsSyms to force the linkage of
@ -75,4 +75,4 @@ GEN_OFFSET_SYM(tCCS, next_context);
GEN_ABSOLUTE_SYM(__tCCS_SIZEOF, sizeof(tCCS)); GEN_ABSOLUTE_SYM(__tCCS_SIZEOF, sizeof(tCCS));
#endif /* _OFFSETS_COMMON__H_ */ #endif /* _NANO_OFFSETS__H_ */