aboutsummaryrefslogtreecommitdiff
path: root/jerry-core/include/jerryscript-port.h
diff options
context:
space:
mode:
authorMáté Tokodi <mate.tokodi@szteszoftver.hu>2023-11-15 09:49:04 +0100
committerGitHub <noreply@github.com>2023-11-15 09:49:04 +0100
commitff9ff8f36c967890b5ebb240d9fa90d6e351aa01 (patch)
tree30441be6d50401d92ccbde9db18b1ff7aa0a5a2b /jerry-core/include/jerryscript-port.h
parentbc408b159b9de16cb3b8fe84f683c561e2d26000 (diff)
Update doxygen and fix documentation (#5106)
Update Doxyfile to version 1.9.1 Re-enable doxygen CI checker Fix some regular comments that should have been doc comments Document void return types for some inline functions explicitly Move start of some doxygen groups so they are included always, and not left out of certain ifdefs Ignore some doxygen warnings: Member (function) is not documented in headers Documented empty return type in headers Argument has multiple @param documentation sections JerryScript-DCO-1.0-Signed-off-by: Máté Tokodi mate.tokodi@szteszoftver.hu
Diffstat (limited to 'jerry-core/include/jerryscript-port.h')
-rw-r--r--jerry-core/include/jerryscript-port.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/jerry-core/include/jerryscript-port.h b/jerry-core/include/jerryscript-port.h
index 7317a12b..1b882488 100644
--- a/jerry-core/include/jerryscript-port.h
+++ b/jerry-core/include/jerryscript-port.h
@@ -55,9 +55,8 @@ typedef enum
*
* A libc-based port may implement this with exit() or abort(), or both.
*
- * Note: This function is expected to not return.
- *
* @param code: the cause of the error.
+ * @return This function is expected to not return.
*/
void JERRY_ATTR_NORETURN jerry_port_fatal (jerry_fatal_code_t code);
@@ -115,8 +114,6 @@ struct jerry_context_t *jerry_port_context_get (void);
*
* This port function is called by jerry_cleanup when JERRY_EXTERNAL_CONTEXT is enabled.
* Otherwise this function is not used.
- *
- * @return the pointer to the engine context.
*/
void jerry_port_context_free (void);