mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-06-27 06:48:31 +00:00
Mint APE Loader v1.7
This change reduces the memory requirements of your APE Loader by 10x, in terms of virtual memory size, thanks to the help of alloca(). We're also now creating argument blocks with the same layout across systems.
This commit is contained in:
parent
d967a94c9a
commit
1d8937d528
31 changed files with 367 additions and 656 deletions
|
@ -40,7 +40,9 @@ dontinline void ShowIt(const char *path) {
|
|||
"total file nodes in filesystem");
|
||||
printf("f_ffree = %,zu (%s)\n", sf.f_ffree,
|
||||
"free file nodes in filesystem");
|
||||
printf("f_fsid = %#lx (%s)\n", sf.f_fsid, "filesystem id");
|
||||
printf("f_fsid = %#lx (%s)\n",
|
||||
sf.f_fsid.__val[0] | (uint64_t)sf.f_fsid.__val[1] << 32,
|
||||
"filesystem id");
|
||||
printf("f_owner = %#lx (%s)\n", sf.f_owner, "user that created mount");
|
||||
printf("f_namelen = %,zu (%s)\n", sf.f_namelen,
|
||||
"maximum length of filenames");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue