[rtems-docs commit] c-user: Adjust integer types in partition create
Sebastian Huber
sebh at rtems.org
Fri Aug 10 05:20:15 UTC 2018
Module: rtems-docs
Branch: master
Commit: 0c4f2be0a80f47f875a508fb0b40aaa867f72cca
Changeset: http://git.rtems.org/rtems-docs/commit/?id=0c4f2be0a80f47f875a508fb0b40aaa867f72cca
Author: Sebastian Huber <sebastian.huber at embedded-brains.de>
Date: Fri Aug 10 07:19:31 2018 +0200
c-user: Adjust integer types in partition create
Close #3486.
---
c-user/partition_manager.rst | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/c-user/partition_manager.rst b/c-user/partition_manager.rst
index a334883..09dd054 100644
--- a/c-user/partition_manager.rst
+++ b/c-user/partition_manager.rst
@@ -149,8 +149,8 @@ CALLING SEQUENCE:
rtems_status_code rtems_partition_create(
rtems_name name,
void *starting_address,
- uint32_t length,
- uint32_t buffer_size,
+ uintptr_t length,
+ size_t buffer_size,
rtems_attribute attribute_set,
rtems_id *id
);
More information about the vc
mailing list