diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2020-07-26 19:36:28 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2020-07-26 19:36:28 +0000 |
commit | cfca06d7963fa0909f90483b42a6d7d194d01e08 (patch) | |
tree | 209fb2a2d68f8f277793fc8df46c753d31bc853b /openmp/runtime/src/kmp_wrapper_malloc.h | |
parent | 706b4fc47bbc608932d3b491ae19a3b9cde9497b (diff) |
Notes
Diffstat (limited to 'openmp/runtime/src/kmp_wrapper_malloc.h')
-rw-r--r-- | openmp/runtime/src/kmp_wrapper_malloc.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/openmp/runtime/src/kmp_wrapper_malloc.h b/openmp/runtime/src/kmp_wrapper_malloc.h index 1544c5df3d64..c027e0b297d0 100644 --- a/openmp/runtime/src/kmp_wrapper_malloc.h +++ b/openmp/runtime/src/kmp_wrapper_malloc.h @@ -15,11 +15,11 @@ #define KMP_WRAPPER_MALLOC_H /* This header serves for 3 purposes: - 1. Declaring standard memory allocation rourines in OS-independent way. + 1. Declaring standard memory allocation routines in OS-independent way. 2. Passing source location info through memory allocation wrappers. 3. Enabling native memory debugging capabilities. - 1. Declaring standard memory allocation rourines in OS-independent way. + 1. Declaring standard memory allocation routines in OS-independent way. ----------------------------------------------------------------------- On Linux* OS, alloca() function is declared in <alloca.h> header, while on Windows* OS there is no <alloca.h> header, function _alloca() (note @@ -103,9 +103,9 @@ #error Unknown or unsupported OS. #endif -/* KMP_SRC_LOC_DECL -- Declaring source location paramemters, to be used in +/* KMP_SRC_LOC_DECL -- Declaring source location parameters, to be used in function declaration. - KMP_SRC_LOC_PARM -- Source location paramemters, to be used to pass + KMP_SRC_LOC_PARM -- Source location parameters, to be used to pass parameters to underlying levels. KMP_SRC_LOC_CURR -- Source location arguments describing current location, to be used at top-level. |