From 72988cd968b3ec9a9f310556bef6f66f0ed4f4a3 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 16 May 2000 19:11:33 +0000 Subject: [PATCH] Changed RTEMS_MAXIMUM_NAME_LENGTH to ITRON_MAXIMUM_NAME_LENGTH. --- c/src/exec/itron/src/eventflags.c | 2 +- c/src/exec/itron/src/fmempool.c | 2 +- c/src/exec/itron/src/itronsem.c | 2 +- c/src/exec/itron/src/mbox.c | 2 +- c/src/exec/itron/src/msgbuffer.c | 2 +- c/src/exec/itron/src/port.c | 2 +- c/src/exec/itron/src/vmempool.c | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/c/src/exec/itron/src/eventflags.c b/c/src/exec/itron/src/eventflags.c index b7d974ae37..f1a0858e92 100644 --- a/c/src/exec/itron/src/eventflags.c +++ b/c/src/exec/itron/src/eventflags.c @@ -38,7 +38,7 @@ void _ITRON_Eventflags_Manager_initialization( /* control block */ FALSE, /* TRUE if names for this object */ /* are strings */ - RTEMS_MAXIMUM_NAME_LENGTH, /* maximum length of each object's */ + ITRON_MAXIMUM_NAME_LENGTH, /* maximum length of each object's */ /* name */ FALSE /* TRUE if this class is threads */ ); diff --git a/c/src/exec/itron/src/fmempool.c b/c/src/exec/itron/src/fmempool.c index ec19e6770c..93bbe56af1 100644 --- a/c/src/exec/itron/src/fmempool.c +++ b/c/src/exec/itron/src/fmempool.c @@ -39,7 +39,7 @@ void _ITRON_Fixed_memory_pool_Manager_initialization( /* size of this object's control block */ FALSE, /* TRUE if names for this object */ /* are strings */ - RTEMS_MAXIMUM_NAME_LENGTH, /* maximum length of each object's */ + ITRON_MAXIMUM_NAME_LENGTH, /* maximum length of each object's */ /* name */ FALSE /* TRUE if this class is threads */ ); diff --git a/c/src/exec/itron/src/itronsem.c b/c/src/exec/itron/src/itronsem.c index ad9278aec2..83686b4a44 100644 --- a/c/src/exec/itron/src/itronsem.c +++ b/c/src/exec/itron/src/itronsem.c @@ -41,7 +41,7 @@ void _ITRON_Semaphore_Manager_initialization( sizeof( ITRON_Semaphore_Control ), /* size of this object's control block */ FALSE, /* TRUE if names for this object */ /* are strings */ - RTEMS_MAXIMUM_NAME_LENGTH, /* maximum length of each object's */ + ITRON_MAXIMUM_NAME_LENGTH, /* maximum length of each object's */ /* name */ FALSE /* TRUE if this class is threads */ ); diff --git a/c/src/exec/itron/src/mbox.c b/c/src/exec/itron/src/mbox.c index a8dd9a26ca..6d2deb8819 100644 --- a/c/src/exec/itron/src/mbox.c +++ b/c/src/exec/itron/src/mbox.c @@ -40,7 +40,7 @@ void _ITRON_Mailbox_Manager_initialization( sizeof( ITRON_Mailbox_Control ), /* size of this object's control block */ FALSE, /* TRUE if names for this object */ /* are strings */ - RTEMS_MAXIMUM_NAME_LENGTH, /* maximum length of each object's */ + ITRON_MAXIMUM_NAME_LENGTH, /* maximum length of each object's */ /* name */ FALSE /* TRUE if this class is threads */ ); diff --git a/c/src/exec/itron/src/msgbuffer.c b/c/src/exec/itron/src/msgbuffer.c index 13c89efba6..e4cb4a4f20 100644 --- a/c/src/exec/itron/src/msgbuffer.c +++ b/c/src/exec/itron/src/msgbuffer.c @@ -43,7 +43,7 @@ void _ITRON_Message_buffer_Manager_initialization( block */ FALSE, /* TRUE if names for this object are strings */ - RTEMS_MAXIMUM_NAME_LENGTH, /* maximum length of each + ITRON_MAXIMUM_NAME_LENGTH, /* maximum length of each object's name */ FALSE /* TRUE if this class is threads */ ); diff --git a/c/src/exec/itron/src/port.c b/c/src/exec/itron/src/port.c index 0e9d98eb04..df360e155d 100644 --- a/c/src/exec/itron/src/port.c +++ b/c/src/exec/itron/src/port.c @@ -36,7 +36,7 @@ void _ITRON_Port_Manager_initialization( sizeof( ITRON_Port_Control ), /* size of this object's control block */ FALSE, /* TRUE if names for this object */ /* are strings */ - RTEMS_MAXIMUM_NAME_LENGTH, /* maximum length of each object's name */ + ITRON_MAXIMUM_NAME_LENGTH, /* maximum length of each object's name */ FALSE /* TRUE if this class is threads */ ); diff --git a/c/src/exec/itron/src/vmempool.c b/c/src/exec/itron/src/vmempool.c index d1a7d8a4a7..7f0ee73021 100644 --- a/c/src/exec/itron/src/vmempool.c +++ b/c/src/exec/itron/src/vmempool.c @@ -39,7 +39,7 @@ void _ITRON_Variable_memory_pool_Manager_initialization( /* size of this object's control block */ FALSE, /* TRUE if names for this object */ /* are strings */ - RTEMS_MAXIMUM_NAME_LENGTH, /* maximum length of each object's */ + ITRON_MAXIMUM_NAME_LENGTH, /* maximum length of each object's */ /* name */ FALSE /* TRUE if this class is threads */ );