diff --git a/docs/dir_6e8afc538eccbcb491711fd0cc7b9703.html b/docs/dir_6e8afc538eccbcb491711fd0cc7b9703.html
index 513c9d7..bf067be 100644
--- a/docs/dir_6e8afc538eccbcb491711fd0cc7b9703.html
+++ b/docs/dir_6e8afc538eccbcb491711fd0cc7b9703.html
@@ -121,7 +121,8 @@
+
+
+
+
+
+
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+
+
+
+
+
Provides utilities for managing runtime operations within Rishka applications.
+More...
+
+
Go to the source code of this file.
+
+
+
Provides utilities for managing runtime operations within Rishka applications.
+
- Author
- Nathanne Isip
+
The Runtime class encapsulates functionality related to runtime management and control flow within Rishka applications. It serves as a central hub for coordinating runtime activities, such as task scheduling, event processing, and resource management. Developers can leverage the Runtime class to orchestrate the execution flow of their applications, ensuring efficient utilization of system resources and optimal performance.
+
+
+
-
+
Go to the documentation of this file.
@@ -119,18 +119,18 @@
-
18#ifndef LIBRISHKA_RUNTIME_H
-
19#define LIBRISHKA_RUNTIME_H
-
-
-
-
-
-
+
31#ifndef LIBRISHKA_RUNTIME_H
+
32#define LIBRISHKA_RUNTIME_H
+
+
-
-
-
The Runtime class provides utilities for managing runtime operations.
Definition runtime.h:29
+
+
+
The Runtime class provides utilities for managing runtime operations.
Definition runtime.h:42
static void yield()
Yield the execution context to other tasks or threads.
Definition librishka_impl.cpp:655
diff --git a/docs/search/all_e.js b/docs/search/all_e.js
index e741057..36ec3a4 100644
--- a/docs/search/all_e.js
+++ b/docs/search/all_e.js
@@ -14,5 +14,6 @@ var searchData=
['rmdir_11',['rmdir',['../class_f_s.html#a24f4d7fe44e698f6467ce673be778de5',1,'FS']]],
['rune_12',['rune',['../types_8h.html#a405b10d09d9298aac12e28a2e92c4641',1,'types.h']]],
['runtime_13',['Runtime',['../class_runtime.html',1,'']]],
- ['runtime_20system_20calls_14',['Runtime System Calls',['../group__syscalls.html',1,'Runtime System Calls'],['../syscalls.html',1,'Runtime System Calls']]]
+ ['runtime_20system_20calls_14',['Runtime System Calls',['../group__syscalls.html',1,'Runtime System Calls'],['../syscalls.html',1,'Runtime System Calls']]],
+ ['runtime_2eh_15',['runtime.h',['../runtime_8h.html',1,'']]]
];
diff --git a/docs/search/files_6.js b/docs/search/files_6.js
index b3a188f..c1ef467 100644
--- a/docs/search/files_6.js
+++ b/docs/search/files_6.js
@@ -1,5 +1,4 @@
var searchData=
[
- ['spi_2eh_0',['spi.h',['../spi_8h.html',1,'']]],
- ['sys_2eh_1',['sys.h',['../sys_8h.html',1,'']]]
+ ['runtime_2eh_0',['runtime.h',['../runtime_8h.html',1,'']]]
];
diff --git a/docs/search/files_7.js b/docs/search/files_7.js
index f4d8923..b3a188f 100644
--- a/docs/search/files_7.js
+++ b/docs/search/files_7.js
@@ -1,4 +1,5 @@
var searchData=
[
- ['types_2eh_0',['types.h',['../types_8h.html',1,'']]]
+ ['spi_2eh_0',['spi.h',['../spi_8h.html',1,'']]],
+ ['sys_2eh_1',['sys.h',['../sys_8h.html',1,'']]]
];
diff --git a/docs/search/files_8.js b/docs/search/files_8.js
new file mode 100644
index 0000000..f4d8923
--- /dev/null
+++ b/docs/search/files_8.js
@@ -0,0 +1,4 @@
+var searchData=
+[
+ ['types_2eh_0',['types.h',['../types_8h.html',1,'']]]
+];
diff --git a/docs/search/searchdata.js b/docs/search/searchdata.js
index 8699757..0e2ce93 100644
--- a/docs/search/searchdata.js
+++ b/docs/search/searchdata.js
@@ -2,7 +2,7 @@ var indexSectionsWithContent =
{
0: "abcdefghilmnoprstuvwy",
1: "afgimrs",
- 2: "afgilmst",
+ 2: "afgilmrst",
3: "abcdefgilmnoprstvwy",
4: "airsu",
5: "gis",
diff --git a/sdk/librishka/runtime.h b/sdk/librishka/runtime.h
index 98079d6..f2059b3 100644
--- a/sdk/librishka/runtime.h
+++ b/sdk/librishka/runtime.h
@@ -15,6 +15,19 @@
* along with this program. If not, see
.
*/
+/**
+ * @file runtime.h
+ * @author [Nathanne Isip](https://github.com/nthnn)
+ * @brief Provides utilities for managing runtime operations within Rishka applications.
+ *
+ * The Runtime class encapsulates functionality related to runtime management
+ * and control flow within Rishka applications. It serves as a central hub for
+ * coordinating runtime activities, such as task scheduling, event processing,
+ * and resource management. Developers can leverage the Runtime class to
+ * orchestrate the execution flow of their applications, ensuring efficient
+ * utilization of system resources and optimal performance.
+ */
+
#ifndef LIBRISHKA_RUNTIME_H
#define LIBRISHKA_RUNTIME_H