mirror of
https://github.com/hermitcore/libhermit.git
synced 2025-03-09 00:00:03 +01:00
increase the maximum number of cores to 40
This commit is contained in:
parent
a4cb86aaf0
commit
d8503b4084
2 changed files with 3 additions and 2 deletions
|
@ -32,7 +32,7 @@
|
|||
extern "C" {
|
||||
#endif
|
||||
|
||||
#define MAX_CORES 8
|
||||
#define MAX_CORES 40
|
||||
#define MAX_TASKS 16
|
||||
#define MAX_FNAME 128
|
||||
#define TIMER_FREQ 100 /* in HZ */
|
||||
|
@ -48,6 +48,7 @@ extern "C" {
|
|||
|
||||
#define BYTE_ORDER LITTLE_ENDIAN
|
||||
|
||||
//#define CONFIG_TICKLESS
|
||||
//#define CONFIG_VGA
|
||||
|
||||
#define BUILTIN_EXPECT(exp, b) __builtin_expect((exp), (b))
|
||||
|
|
|
@ -2,7 +2,7 @@ OUTPUT_FORMAT("elf64-x86-64")
|
|||
OUTPUT_ARCH("i386:x86-64")
|
||||
ENTRY(start)
|
||||
phys = (2 << 20);
|
||||
cores = 8;
|
||||
cores = 40;
|
||||
|
||||
SECTIONS
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue