📄 os.c
字号:
/* * Copyright (C) 2003, 2004, 2005, 2006, 2007 * Robert Lougher <rob@lougher.org.uk>. * * This file is part of JamVM. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2, * or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */#include <stdio.h>#include <string.h>#include <stdlib.h>#include <dlfcn.h>#include <sys/sysinfo.h>#include <pthread.h>#include "../../jam.h"void *nativeStackBase() {#ifdef __UCLIBC__ return NULL;#else pthread_attr_t attr; void *addr; size_t size; pthread_getattr_np(pthread_self(), &attr); pthread_attr_getstack(&attr, &addr, &size); return addr+size;#endif}int nativeAvailableProcessors() {#ifdef __UCLIBC__ return 1;#else return get_nprocs();#endif}char *nativeLibPath() { return getenv("LD_LIBRARY_PATH");}void *nativeLibOpen(char *path) { return dlopen(path, RTLD_LAZY);}void nativeLibClose(void *handle) { dlclose(handle);}void *nativeLibSym(void *handle, char *symbol) { return dlsym(handle, symbol);}char *nativeLibMapName(char *name) { char *buff = sysMalloc(strlen(name) + sizeof("lib.so") + 1); sprintf(buff, "lib%s.so", name); return buff;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -