mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-24 11:41:58 +00:00
tweaks.
This commit is contained in:
parent
cedbe4a4fa
commit
2db9e4821d
3 changed files with 3 additions and 7 deletions
|
@ -50,10 +50,11 @@ enum
|
||||||
{
|
{
|
||||||
VtScoreSize = 20,
|
VtScoreSize = 20,
|
||||||
VtMaxStringSize = 1024,
|
VtMaxStringSize = 1024,
|
||||||
VtMaxFileSize = (1ULL<<48) - 1,
|
|
||||||
VtMaxLumpSize = 56*1024,
|
VtMaxLumpSize = 56*1024,
|
||||||
VtPointerDepth = 7,
|
VtPointerDepth = 7,
|
||||||
};
|
};
|
||||||
|
#define VtMaxFileSize ((1ULL<<48)-1)
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Strings in packets.
|
* Strings in packets.
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
typedef unsigned long long uvlong;
|
typedef unsigned long long uvlong;
|
||||||
typedef unsigned long ulong;
|
typedef unsigned long ulong;
|
||||||
|
|
||||||
#ifdef NEEDLL
|
#ifdef _NEEDLL
|
||||||
static uvlong uvnan = 0x7FF0000000000001LL;
|
static uvlong uvnan = 0x7FF0000000000001LL;
|
||||||
static uvlong uvinf = 0x7FF0000000000000LL;
|
static uvlong uvinf = 0x7FF0000000000000LL;
|
||||||
static uvlong uvneginf = 0xFFF0000000000000LL;
|
static uvlong uvneginf = 0xFFF0000000000000LL;
|
||||||
|
|
|
@ -24,11 +24,6 @@
|
||||||
#include <thread.h>
|
#include <thread.h>
|
||||||
#include "label.h"
|
#include "label.h"
|
||||||
|
|
||||||
enum{
|
|
||||||
STKSIZE = 16384,
|
|
||||||
STKMAGIC = 0xCAFEBEEF
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef struct Thread Thread;
|
typedef struct Thread Thread;
|
||||||
typedef struct Proc Proc;
|
typedef struct Proc Proc;
|
||||||
typedef struct Tqueue Tqueue;
|
typedef struct Tqueue Tqueue;
|
||||||
|
|
Loading…
Reference in a new issue