summaryrefslogtreecommitdiff
path: root/ACE/ace/OS_NS_stdlib.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2009-01-15 13:53:08 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2009-01-15 13:53:08 +0000
commit11fda3465cdd321afde209e5a83cf15b2a8ecdd1 (patch)
tree045273807724ff85aad9c308f0d581206f0d92f8 /ACE/ace/OS_NS_stdlib.h
parentbef73b264baaca780427433dce92b61fcfe0dcea (diff)
downloadATCD-11fda3465cdd321afde209e5a83cf15b2a8ecdd1.tar.gz
Thu Jan 15 13:52:32 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/OS_NS_stdlib.h: Doxygen changes
Diffstat (limited to 'ACE/ace/OS_NS_stdlib.h')
-rw-r--r--ACE/ace/OS_NS_stdlib.h30
1 files changed, 28 insertions, 2 deletions
diff --git a/ACE/ace/OS_NS_stdlib.h b/ACE/ace/OS_NS_stdlib.h
index 0f950208374..11ba2002a32 100644
--- a/ACE/ace/OS_NS_stdlib.h
+++ b/ACE/ace/OS_NS_stdlib.h
@@ -62,36 +62,56 @@ namespace ACE_OS {
*
*/
//@{
-
-
ACE_NAMESPACE_INLINE_FUNCTION
void _exit (int status = 0);
ACE_NAMESPACE_INLINE_FUNCTION
void abort (void);
+ /**
+ * Register an at exit hook. The @a name can be used to analyze shutdown
+ * problems
+ */
ACE_NAMESPACE_INLINE_FUNCTION
int atexit (ACE_EXIT_HOOK func, const char* name = 0);
+ /*
+ * Convert string to integer
+ */
ACE_NAMESPACE_INLINE_FUNCTION
int atoi (const char *s);
# if defined (ACE_HAS_WCHAR)
+ /*
+ * Convert string to integer
+ */
ACE_NAMESPACE_INLINE_FUNCTION
int atoi (const wchar_t *s);
# endif /* ACE_HAS_WCHAR */
+ /*
+ * Convert string to long
+ */
ACE_NAMESPACE_INLINE_FUNCTION
long atol (const char *s);
+ /*
+ * Convert string to long
+ */
# if defined (ACE_HAS_WCHAR)
ACE_NAMESPACE_INLINE_FUNCTION
long atol (const wchar_t *s);
# endif /* ACE_HAS_WCHAR */
+ /*
+ * Convert string to double
+ */
ACE_NAMESPACE_INLINE_FUNCTION
double atof (const char *s);
+ /*
+ * Convert string to double
+ */
# if defined (ACE_HAS_WCHAR)
ACE_NAMESPACE_INLINE_FUNCTION
double atof (const wchar_t *s);
@@ -102,10 +122,16 @@ namespace ACE_OS {
# undef atop
# endif /* atop */
+ /*
+ * Convert string to pointer
+ */
ACE_NAMESPACE_INLINE_FUNCTION
void *atop (const char *s);
# if defined (ACE_HAS_WCHAR)
+ /*
+ * Convert string to pointer
+ */
ACE_NAMESPACE_INLINE_FUNCTION
void *atop (const wchar_t *s);
# endif /* ACE_HAS_WCHAR */