summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/wkspace.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/include/rtems/score/wkspace.h')
-rw-r--r--cpukit/score/include/rtems/score/wkspace.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/cpukit/score/include/rtems/score/wkspace.h b/cpukit/score/include/rtems/score/wkspace.h
index 0fc96df6c2..b1d3e88d9f 100644
--- a/cpukit/score/include/rtems/score/wkspace.h
+++ b/cpukit/score/include/rtems/score/wkspace.h
@@ -102,18 +102,15 @@ void *_Workspace_Allocate_or_fatal_error(
/**
* @brief Duplicates the @a string with memory from the Workspace.
*
- * If the @a string length exceeds @a maxlen, then the additional characters
- * will be discarded.
- *
* @param[in] string Pointer to zero terminated string.
- * @param[in] maxlen Maximum length of the duplicated string.
+ * @param[in] len Length of the string (equal to strlen(string)).
*
* @return NULL Not enough memory.
* @return other Duplicated string.
*/
char *_Workspace_String_duplicate(
const char *string,
- size_t maxlen
+ size_t len
);
#ifndef __RTEMS_APPLICATION__