summaryrefslogtreecommitdiffstats
path: root/doc/bsp_howto/shmsupp.t
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-08-21 14:50:16 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-08-21 14:50:16 +0000
commit2a517327a657007f3dbada9998db483792df8ef9 (patch)
tree87cf29eacbdd28523aed6a061492ab8c561251d7 /doc/bsp_howto/shmsupp.t
parent2008-08-21 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-2a517327a657007f3dbada9998db483792df8ef9.tar.bz2
2008-08-21 Joel Sherrill <joel.sherrill@OARcorp.com>
* bsp_howto/ata.t, bsp_howto/clock.t, bsp_howto/ide-ctrl.t, bsp_howto/nvmem.t, bsp_howto/shmsupp.t, user/datatypes.t, user/mp.t, user/userext.t: Eliminate all references to rtems_signedXX and rtems_unsignedXX.
Diffstat (limited to 'doc/bsp_howto/shmsupp.t')
-rw-r--r--doc/bsp_howto/shmsupp.t6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/bsp_howto/shmsupp.t b/doc/bsp_howto/shmsupp.t
index 3c087ca6cd..885db4d5e6 100644
--- a/doc/bsp_howto/shmsupp.t
+++ b/doc/bsp_howto/shmsupp.t
@@ -27,7 +27,7 @@ structure:
@example
@group
-typedef volatile rtems_unsigned32 vol_u32;
+typedef volatile uint32_t vol_u32;
typedef struct @{
vol_u32 *address; /* write here for interrupt */
@@ -41,7 +41,7 @@ struct shm_config_info @{
vol_u32 format; /* SHM is big or little endian */
vol_u32 (*convert)(); /* neutral conversion routine */
vol_u32 poll_intr; /* POLLED or INTR driven mode */
- void (*cause_intr)( rtems_unsigned32 );
+ void (*cause_intr)( uint32_t );
Shm_Interrupt_information Intr; /* cause intr information */
@};
@@ -123,7 +123,7 @@ Shared Memory Configuration Table passed to it.
@example
@group
void Shm_Get_configuration(
- rtems_unsigned32 localnode,
+ uint32_t localnode,
shm_config_table **shmcfg
)
@{