added constant for number of notepads

This commit is contained in:
Joel Sherrill
1995-08-11 14:13:51 +00:00
parent e7e016fdc2
commit 4d9fa26805
3 changed files with 30 additions and 24 deletions

View File

@@ -60,6 +60,8 @@ extern "C" {
#define RTEMS_NOTEPAD_15 15 /* notepad location 15 */ #define RTEMS_NOTEPAD_15 15 /* notepad location 15 */
#define RTEMS_NOTEPAD_LAST RTEMS_NOTEPAD_15 /* highest numbered notepad */ #define RTEMS_NOTEPAD_LAST RTEMS_NOTEPAD_15 /* highest numbered notepad */
#define RTEMS_NUMBER_NOTEPADS (RTEMS_NOTEPAD_LAST+1)
/* /*
* The following defines the "return type" of an RTEMS thread. * The following defines the "return type" of an RTEMS thread.
* *
@@ -172,7 +174,7 @@ typedef struct {
rtems_attribute attribute_set; rtems_attribute attribute_set;
Context_Control Registers; Context_Control Registers;
void *fp_context; void *fp_context;
unsigned32 Notepads[ 16 ]; unsigned32 Notepads[ RTEMS_NUMBER_NOTEPADS ];
void *extension; void *extension;
} Thread_Control; } Thread_Control;

View File

@@ -60,6 +60,8 @@ extern "C" {
#define RTEMS_NOTEPAD_15 15 /* notepad location 15 */ #define RTEMS_NOTEPAD_15 15 /* notepad location 15 */
#define RTEMS_NOTEPAD_LAST RTEMS_NOTEPAD_15 /* highest numbered notepad */ #define RTEMS_NOTEPAD_LAST RTEMS_NOTEPAD_15 /* highest numbered notepad */
#define RTEMS_NUMBER_NOTEPADS (RTEMS_NOTEPAD_LAST+1)
/* /*
* The following defines the "return type" of an RTEMS thread. * The following defines the "return type" of an RTEMS thread.
* *
@@ -172,7 +174,7 @@ typedef struct {
rtems_attribute attribute_set; rtems_attribute attribute_set;
Context_Control Registers; Context_Control Registers;
void *fp_context; void *fp_context;
unsigned32 Notepads[ 16 ]; unsigned32 Notepads[ RTEMS_NUMBER_NOTEPADS ];
void *extension; void *extension;
} Thread_Control; } Thread_Control;

View File

@@ -60,6 +60,8 @@ extern "C" {
#define RTEMS_NOTEPAD_15 15 /* notepad location 15 */ #define RTEMS_NOTEPAD_15 15 /* notepad location 15 */
#define RTEMS_NOTEPAD_LAST RTEMS_NOTEPAD_15 /* highest numbered notepad */ #define RTEMS_NOTEPAD_LAST RTEMS_NOTEPAD_15 /* highest numbered notepad */
#define RTEMS_NUMBER_NOTEPADS (RTEMS_NOTEPAD_LAST+1)
/* /*
* The following defines the "return type" of an RTEMS thread. * The following defines the "return type" of an RTEMS thread.
* *
@@ -172,7 +174,7 @@ typedef struct {
rtems_attribute attribute_set; rtems_attribute attribute_set;
Context_Control Registers; Context_Control Registers;
void *fp_context; void *fp_context;
unsigned32 Notepads[ 16 ]; unsigned32 Notepads[ RTEMS_NUMBER_NOTEPADS ];
void *extension; void *extension;
} Thread_Control; } Thread_Control;