diff options
| author | Kyle Evans <kevans@FreeBSD.org> | 2023-09-25 21:24:07 +0300 |
|---|---|---|
| committer | Warner Losh <imp@bsdimp.com> | 2023-10-03 17:14:06 -0600 |
| commit | b623031ca60b23dbb8a573306495e7d99821a9af (patch) | |
| tree | 3a89220e3eaf129be9bb2438daedec3ad48be567 /bsd-user/bsd-proc.h | |
| parent | 3f44e273ff530ae9885b64791779ced571233d1d (diff) | |
| download | focaccia-qemu-b623031ca60b23dbb8a573306495e7d99821a9af.tar.gz focaccia-qemu-b623031ca60b23dbb8a573306495e7d99821a9af.zip | |
bsd-user: Get number of cpus.
Signed-off-by: Kyle Evans <kevans@FreeBSD.org> Signed-off-by: Karim Taha <kariem.taha2.7@gmail.com> Reviewed-by: Warner Losh <imp@bsdimp.com> Message-Id: <20230925182425.3163-11-kariem.taha2.7@gmail.com>
Diffstat (limited to 'bsd-user/bsd-proc.h')
| -rw-r--r-- | bsd-user/bsd-proc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bsd-user/bsd-proc.h b/bsd-user/bsd-proc.h index 048773a75d..b6225e520e 100644 --- a/bsd-user/bsd-proc.h +++ b/bsd-user/bsd-proc.h @@ -26,6 +26,8 @@ #include "gdbstub/syscalls.h" #include "qemu/plugin.h" +int bsd_get_ncpu(void); + /* exit(2) */ static inline abi_long do_bsd_exit(void *cpu_env, abi_long arg1) { |