mirror of
https://github.com/justinian/jsix.git
synced 2025-12-10 00:14:32 -08:00
[libj6] Move _init_libc to _init_libj6
As part of the move of jsix-specific code from libc to libj6, all the library initialization is now libj6-specific, so move it all over.
This commit is contained in:
@@ -1,17 +1,15 @@
|
||||
extern main
|
||||
extern exit
|
||||
extern _init_libc
|
||||
extern _init_libj6
|
||||
|
||||
global _start:function (_start.end - _start)
|
||||
_start:
|
||||
mov rbp, rsp
|
||||
mov rdi, rsp
|
||||
|
||||
call _init_libc
|
||||
call _init_libj6
|
||||
|
||||
pop rdi
|
||||
mov rsi, rsp
|
||||
|
||||
call main
|
||||
|
||||
mov rdi, rax
|
||||
|
||||
@@ -1,41 +0,0 @@
|
||||
#include <stdint.h>
|
||||
#include <j6/init.h>
|
||||
#include <j6/types.h>
|
||||
|
||||
static size_t __initc = 0;
|
||||
static struct j6_init_value *__initv = 0;
|
||||
|
||||
j6_handle_t __handle_sys = j6_handle_invalid;
|
||||
j6_handle_t __handle_self = j6_handle_invalid;
|
||||
|
||||
void
|
||||
_get_init(size_t *initc, struct j6_init_value **initv)
|
||||
{
|
||||
if (!initc)
|
||||
return;
|
||||
|
||||
*initc = __initc;
|
||||
if (initv)
|
||||
*initv = __initv;
|
||||
}
|
||||
|
||||
void
|
||||
_init_libc(uint64_t *rsp)
|
||||
{
|
||||
uint64_t argc = *rsp++;
|
||||
rsp += argc;
|
||||
|
||||
__initc = *rsp++;
|
||||
__initv = (struct j6_init_value *)rsp;
|
||||
|
||||
for (unsigned i = 0; i < __initc; ++i) {
|
||||
if (__initv[i].type == j6_init_handle_other &&
|
||||
__initv[i].handle.type == j6_object_type_system) {
|
||||
__handle_sys = __initv[i].handle.handle;
|
||||
}
|
||||
else if (__initv[i].type == j6_init_handle_self &&
|
||||
__initv[i].handle.type == j6_object_type_process) {
|
||||
__handle_self = __initv[i].handle.handle;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user