Andrew Kelley
86a5edca62
Revert "std.os: implementing sched_setaffinity wrapper for freebsd"
...
This reverts commit 05268bb9677ef0545cca6c788169b2707842dc8d.
2023-07-31 10:58:03 -07:00
Andrew Kelley
e1fdd21f0e
Revert "std.c: add rfork for freebsd"
...
This reverts commit 2952fb97588fa2eb711bf84b479e959b60542192.
2023-07-31 10:57:35 -07:00
Andrew Kelley
b7e37f9ddc
Revert "std.c: add ptrace for freebsd support."
...
This reverts commit b754068fbc7492962953068d31386d4c04e37ae5.
2023-07-31 10:57:12 -07:00
Andrew Kelley
9d798ead63
Revert "std.c: fix freebsd's CPU_ISSET call"
...
This reverts commit 768965788ecb9a0a70b4363f9472471bb0bbe5ec.
2023-07-31 10:54:45 -07:00
Andrew Kelley
1b9ffa0824
Revert "std.Thread: refining stack size from platform minimum, changes more targetted towards platform like Linux/musl ( #15791 )"
...
This reverts commit 41502c6aa53a3da31b276c23c4db74db7d04796b.
2023-07-31 10:54:35 -07:00
Andrew Kelley
ba3b352891
Revert "std.os: fix uname usage."
...
This reverts commit 138f1253deb48434af707ec5e9124e889520be08.
2023-07-31 10:52:12 -07:00
Andrew Kelley
9f20d01cfb
Revert "std.c: exposing timer api"
...
This reverts commit 54ea0bbcdddc9e13ed98415d8883f03d59392509.
2023-07-31 10:51:44 -07:00
Andrew Kelley
643c986838
Revert "std.c: freebsd fix typo for PROC.PROCCTL_MD_MIN constant."
...
This reverts commit e9dd0a22f0d93683f97db747be53d8d2d21c3543.
2023-07-31 10:50:27 -07:00
Andrew Kelley
381704dd0e
Revert "std.c: fix few capcisum api calls, following-up on 6ae19fa."
...
This reverts commit 72dd22f262353fa7d37c89c7d163e97a162abb9b.
2023-07-31 10:50:16 -07:00
Andrew Kelley
88b4ee172f
Revert "std.c: few freebsd's kinfo api fixes."
...
This reverts commit d07149c56d202c3503c4f5505e8b003b3e161145.
2023-07-31 10:50:09 -07:00
Andrew Kelley
95e2605d30
Revert "std.c: msghdr* struct removing prefixes to match linux."
...
This reverts commit 8f14431bc883898aaf78cc985e2d90716187e882.
2023-07-31 10:49:57 -07:00
David CARLIER
8f14431bc8
std.c: msghdr* struct removing prefixes to match linux.
2023-07-01 11:14:39 -07:00
David CARLIER
d07149c56d
std.c: few freebsd's kinfo api fixes.
...
following up on 4a0508e and 3dd0afe.
- kinfo_vmentry, removing kve_ prefix.
- kinfo_getproc, returns one entry at most.
2023-06-25 12:27:45 -07:00
mlugg
f26dda2117
all: migrate code to new cast builtin syntax
...
Most of this migration was performed automatically with `zig fmt`. There
were a few exceptions which I had to manually fix:
* `@alignCast` and `@addrSpaceCast` cannot be automatically rewritten
* `@truncate`'s fixup is incorrect for vectors
* Test cases are not formatted, and their error locations change
2023-06-24 16:56:39 -07:00
David CARLIER
72dd22f262
std.c: fix few capcisum api calls, following-up on 6ae19fa.
...
only variadic calls are prefixed with underscores.
ref: 59833b089e/sys/sys/capsicum.h (L326)
2023-06-24 13:05:45 -07:00
David CARLIER
e9dd0a22f0
std.c: freebsd fix typo for PROC.PROCCTL_MD_MIN constant.
...
follow-up on 2e2d379.
2023-06-24 12:59:18 -07:00
Eric Joldasov
50339f595a
all: zig fmt and rename "@XToY" to "@YFromX"
...
Signed-off-by: Eric Joldasov <bratishkaerik@getgoogleoff.me>
2023-06-19 12:34:42 -07:00
David CARLIER
54ea0bbcdd
std.c: exposing timer api
2023-06-18 08:09:42 -07:00
Michael Dusan
64ddba955a
freebsd: fix std.c.getdents
...
- fix getdents return type usize → isize
- usize ultimately forced errors to .SUCCESS in std.c.getError
New behavior in freebsd 13.2 is to return ENOENT if the directory being
iterated is deleted during iteration. We now detect this and treat it
consistent with iteration ending.
2023-06-15 14:48:19 -04:00
David CARLIER
138f1253de
std.os: fix uname usage.
...
close #15839 .
2023-05-29 22:08:43 +03:00
Veikka Tuominen
ca16f1e8a7
std.Target adjustments
...
* move `ptrBitWidth` from Arch to Target since it needs to know about the abi
* double isn't always 8 bits
* AVR uses 1-byte alignment for everything in GCC
2023-05-26 21:42:19 -07:00
David CARLIER
41502c6aa5
std.Thread: refining stack size from platform minimum, changes more targetted towards platform like Linux/musl ( #15791 )
2023-05-25 14:32:17 -05:00
David CARLIER
768965788e
std.c: fix freebsd's CPU_ISSET call
2023-05-22 13:13:57 +03:00
David CARLIER
b754068fbc
std.c: add ptrace for freebsd support.
2023-05-16 22:47:51 +03:00
David CARLIER
2952fb9758
std.c: add rfork for freebsd
2023-05-15 03:10:34 +03:00
David CARLIER
05268bb967
std.os: implementing sched_setaffinity wrapper for freebsd
2023-05-14 10:21:42 +03:00
David CARLIER
cd7e2bf57a
std.c: adding freebsd's ioctl base operands.
2023-05-10 19:14:51 +03:00
David CARLIER
5260657230
std.c: add freebsd's kinfo_vmobject
2023-05-10 01:48:35 +03:00
David CARLIER
10a7cf58c1
std.c: adding freebsd's domainset_t bitset
2023-05-10 01:13:15 +03:00
David CARLIER
e8f76b452b
std.c: adding freebsd's domainset api
2023-05-09 14:24:03 +03:00
David CARLIER
3dd0afe787
std.c: adding freebsd's kinfo_proc type.
2023-05-09 12:04:53 +03:00
David CARLIER
b9841750f9
std.c: adding freebsd's CPU_COUNT macro portage.
2023-05-03 08:19:46 +03:00
David CARLIER
6ae19fa48d
std.c: add essential freebsd's capsicum api subset.
2023-04-30 19:44:10 -07:00
David CARLIER
3fb93fc8f2
std.c: freebsd add procctl exclusive x86_64 flags
2023-04-30 12:28:36 +03:00
David CARLIER
8d88dcdc61
std.c: adding mincore for freebsd
2023-04-25 10:43:54 -07:00
David CARLIER
23c4f55a61
std: adding sigevent to supported platforms.
2023-04-23 19:46:43 +03:00
David CARLIER
9ef615104a
std: adding FreeBSD's sched wrappers
2023-04-23 19:46:30 +03:00
David Carlier
9691cded95
std: mcontext layout for x86 and fixing few x86_64 fields types for
...
FreeBSD
2023-04-23 19:46:18 +03:00
David CARLIER
1d322fe510
std: add accept_filter struct to make use of SO_ACCEPTFILTER socket option
2023-04-23 19:45:59 +03:00
David CARLIER
9140249d29
std: enriching malloc api on freebsd.
2023-04-23 19:45:34 +03:00
David CARLIER
dbdafb6cc5
os: expand sched_getaffinity wrapper and update freebsd's cpuset api flags.
2023-04-22 13:54:57 +03:00
David CARLIER
83970b6d91
std: adding freebsd's elf_aux_info api
2023-04-21 11:42:49 -07:00
David CARLIER
2568da2f41
std: freebsd update proposal
...
adding getentropy and cpuset_(get/set)affinity calls.
2023-04-18 14:59:01 +03:00
David CARLIER
7b908e173f
std: add shm_create_largepage for FreeBSD, completing MFD* constants.
2023-04-14 13:41:22 -04:00
David CARLIER
4a0508e56c
std: add kinfo_vmentry for FreeBSD
2023-04-13 23:46:03 -04:00
David CARLIER
2e2d37917d
std: add FreeBSD's procctl api.
2023-04-08 18:31:01 +03:00
David CARLIER
080136e4ad
std: add madvise flags to freebsd
2023-04-05 13:54:01 +03:00
David CARLIER
771d07268f
std: freebsd MAP* constants update, MAP_ALIGNED_SUPER and the MAP_ALIGNED macro.
2023-04-04 12:57:16 +03:00
Stephen Gregoratto
7f635ae7bd
FreeBSD: add mcontext_t for aarch64
...
What isn't disabled for test-std mostly passes, except for the copysign
and signbit tests for f16. Seemingly related to #14366 .
2023-01-21 23:20:50 +02:00
Andrew Kelley
c9ef277fa7
Merge pull request #13980 from ziglang/std.net
...
networking: delete std.x; add std.crypto.tls and std.http.Client
2023-01-03 02:43:50 -05:00