summaryrefslogtreecommitdiffhomepage
path: root/src/ldso
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2017-01-29 01:48:24 +0000
committermidipix <writeonce@midipix.org>2017-01-28 21:54:01 -0500
commitdd1a85ac7ce0c3e2aa16243c73a9aaae7da384fb (patch)
treeae6c61035a6af4dcdb6c320c18d579f498362799 /src/ldso
parent3a475bed2393e3c5d4782ede3fc6549f2e38ce26 (diff)
downloadpemagine-dd1a85ac7ce0c3e2aa16243c73a9aaae7da384fb.tar.bz2
pemagine-dd1a85ac7ce0c3e2aa16243c73a9aaae7da384fb.tar.xz
ldso: added pe_terminate_current_process().
Diffstat (limited to 'src/ldso')
-rw-r--r--src/ldso/pe_terminate_current_process.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/ldso/pe_terminate_current_process.c b/src/ldso/pe_terminate_current_process.c
new file mode 100644
index 0000000..ce0294d
--- /dev/null
+++ b/src/ldso/pe_terminate_current_process.c
@@ -0,0 +1,27 @@
+/*****************************************************************************/
+/* pemagination: a (virtual) tour into portable bits and executable bytes */
+/* Copyright (C) 2013--2017 Z. Gilboa */
+/* Released under GPLv2 and GPLv3; see COPYING.PEMAGINE. */
+/*****************************************************************************/
+
+#include <psxtypes/psxtypes.h>
+#include <pemagine/pemagine.h>
+#include "pe_os.h"
+
+int32_t pe_terminate_current_process(int32_t estatus)
+{
+ void * hntdll;
+ os_zw_terminate_process * zw_terminate_process;
+
+ /* init */
+ if (!(hntdll = pe_get_ntdll_module_handle()))
+ return OS_STATUS_INTERNAL_ERROR;
+
+ if (!(zw_terminate_process = (os_zw_terminate_process *)pe_get_procedure_address(
+ hntdll,"ZwTerminateProcess")))
+ return OS_STATUS_INTERNAL_ERROR;
+
+ return zw_terminate_process(
+ OS_CURRENT_PROCESS_HANDLE,
+ estatus);
+}