summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Auto merge of #2404 - GuillaumeGomez:upgrade, r=JohnTitor0.2.103bors2021-09-272-3/+3
|\ | | | | | | | | | | Upgrade crate version to 0.2.103 If you can release a new version, it'd be awesome! :)
| * Upgrade crate version to 0.2.103Guillaume Gomez2021-09-172-3/+3
| |
* | Auto merge of #2424 - devnexen:solarish_th_name, r=JohnTitorbors2021-09-271-0/+2
|\ \ | | | | | | | | | pthread_getname_np/pthread_setname_np for solarish
| * | pthread_getname_np/pthread_setname_np for solarishDC2021-09-261-0/+2
|/ /
* | Auto merge of #2422 - devnexen:obsd_nbsd_getnamenp, r=JohnTitorbors2021-09-264-0/+4
|\ \ | | | | | | | | | netbsd/openbsd add get thread name api.
| * | netbsd/openbsd add get thread name api.David Carlier2021-09-254-0/+4
| | |
* | | Auto merge of #2420 - devnexen:fbsd_hexdump, r=JohnTitorbors2021-09-262-0/+12
|\ \ \ | | | | | | | | | | | | freebsd add humanize_number/hexdump fn.
| * | | freebsd add humanize_number/hexdump fn.David Carlier2021-09-252-0/+12
| | | |
* | | | Auto merge of #2407 - devnexen:win32_fns_upd, r=JohnTitorbors2021-09-264-0/+14
|\ \ \ \ | | | | | | | | | | | | | | | windows add localtime_s/memccpy fns
| * | | | windows add localtime_s/memccpy fnsDavid Carlier2021-09-244-0/+14
| | | | |
* | | | | Auto merge of #2416 - devnexen:fbsd_timer_api, r=JohnTitorbors2021-09-262-0/+30
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | freebsd add timer api.
| * | | | | freebsd add timer api.David Carlier2021-09-222-0/+30
| | | | | |
* | | | | | Auto merge of #2423 - rtzoeller:dragonfly_sched_getcpu, r=Amanieubors2021-09-261-0/+1
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | DragonFlyBSD supports sched_getcpu() In addition to `sched_setaffinity()` and `sched_getaffinity()`, DragonFlyBSD also provides a way to check which CPU a thread is currently executing on.
| * | | | | DragonFlyBSD supports sched_getcpu()Ryan Zoeller2021-09-251-0/+1
|/ / / / /
* | | | | Auto merge of #2419 - devnexen:fbsd_fbsd_pthread_get_name_np, r=Amanieubors2021-09-253-0/+3
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | freebsd/dragonfly add pthread_get_name_np fn
| * | | | | freebsd/dragonfly add pthread_get_name_np fnDavid Carlier2021-09-253-0/+3
| | |_|/ / | |/| | |
* | | | | Auto merge of #2418 - devnexen:netbsd_timer_api, r=Amanieubors2021-09-252-0/+28
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | netbsd aff timer api
| * | | | netbsd aff timer apiDavid Carlier2021-09-242-0/+28
| | | | |
* | | | | Auto merge of #2403 - skrap:master, r=Amanieubors2021-09-2415-179/+356
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | uclibc: fix semver files, add misc symbols This commit gets uclibc support working again, and fixes the semver lists to segregate gnu- and musl- specific symbols to those libc variants. There is a [separate PR](https://github.com/rust-lang/rust/pull/88952) against rust itself to add armv7-unknown-linux-uclibceabihf as a tier 3 platform, and this commit is in support of that effort. Until that's done, we should not use the CI for that platform, but I'm including the CI file here in anticipation of turning it on in the not-too-distant future.
| * | | | l4re: fix build by adding required constantsJonah Petri2021-09-241-0/+5
| | | | |
| * | | | uclibc/mips: remove duplicated constants and add SYS_clone3Jonah Petri2021-09-242-44/+1
| | | | |
| * | | | remove mistakenly added symbolJonah Petri2021-09-191-1/+0
| | | | |
| * | | | ci: add Dockerfiles for uclibc on armv7 and mipselJonah Petri2021-09-172-0/+39
| | | | |
| * | | | linux: hoist a few symbols which are now available in all libc variantsJonah Petri2021-09-173-71/+35
| | | | |
| * | | | uclibc: add symbols defined in 1.0.34Jonah Petri2021-09-175-34/+196
| | | | |
| * | | | uclibc: skip some items not included in uclibcJonah Petri2021-09-171-0/+18
| | | | |
| * | | | uclibc: update semver lists, moving symbols absert from uclibc into ↵Jonah Petri2021-09-173-37/+70
| | | | | | | | | | | | | | | | | | | | gnu/musl-specific files
* | | | | Auto merge of #2412 - devnexen:netbsd_pollts, r=JohnTitorbors2021-09-242-0/+9
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | netbsd add pollts fn.
| * | | | | netbsd add pollts fn.David Carlier2021-09-202-0/+9
| | | | | |
* | | | | | Auto merge of #2411 - devnexen:fbsd_uuidgen, r=JohnTitorbors2021-09-243-0/+18
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | | | | | | | | freebsd add uuidgen fn.
| * | | | | freebsd add uuidgen fn.David Carlier2021-09-193-0/+18
| |/ / / /
* | | | | Auto merge of #2409 - devnexen:win32_ucontext, r=JohnTitorbors2021-09-244-0/+164
|\ \ \ \ \ | |_|_|/ / |/| | | | | | | | | windows adding CONTEXT type for x86_64 arch.
| * | | | windows adding CONTEXT type for x86_64 arch.David Carlier2021-09-184-0/+164
| |/ / /
* | | | Auto merge of #2413 - devnexen:cpu_isset_bsd_fix_sig, r=Amanieubors2021-09-222-2/+2
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | fix CPU_ISSET signature for freebsd/dragonflybsd. indeed no rason to be mutable and to match linux part as well.
| * | | | fix CPU_ISSET signature for freebsd/dragonflybsd.David Carlier2021-09-212-2/+2
| |/ / / | | | | | | | | | | | | indeed no rason to be mutable and to match linux part as well.
* | | | Auto merge of #2410 - devnexen:bsd_utrace, r=Amanieubors2021-09-218-0/+13
|\ \ \ \ | |/ / / |/| | | | | | | BSD add utrace calls
| * | | BSD add utrace callsDavid Carlier2021-09-198-0/+13
|/ / /
* | | Auto merge of #2408 - devnexen:netbsd_flags_string, r=Amanieubors2021-09-182-0/+9
|\ \ \ | |_|/ |/| | | | | netbsd add string_to_flags api
| * | netbsd add string_to_flags apiDavid Carlier2021-09-182-0/+9
|/ /
* | Auto merge of #2401 - GuillaumeGomez:more-apple, r=Amanieubors2021-09-171-1/+253
|\ \ | |/ |/| | | Add more apple types
| * Handle macro declaration through macroGuillaume Gomez2021-09-171-7/+12
| |
| * Add more apple typesGuillaume Gomez2021-09-161-1/+248
| |
* | Auto merge of #2402 - devnexen:fbsd_map_prefault_read, r=JohnTitorbors2021-09-172-0/+2
|\ \ | |/ |/| | | freebsd/dragonfly adding MAP_PREFAULT_READ/MAP_VPAGETABLE mmap flags.
| * freebsd adding MAP_PREFAULT_READ mmap flag.David Carlier2021-09-172-0/+2
|/
* Auto merge of #2383 - luqmana:ver-102, r=JohnTitor0.2.102bors2021-09-152-3/+3
|\ | | | | | | | | | | Bump to 0.2.102 Bump patch version to access new fn's in #2382.
| * Bump to 0.2.102Luqman Aden2021-08-312-3/+3
| |
* | Auto merge of #2389 - devnexen:macos_sysdir_api, r=Amanieubors2021-09-153-0/+68
|\ \ | | | | | | | | | apple add sysdir api
| * | apple add sysdir apiDavid Carlier2021-09-053-0/+68
| | |
* | | Auto merge of #2400 - rtzoeller:android_sched_reset_on_fork, r=Amanieubors2021-09-142-0/+3
|\ \ \ | | | | | | | | | | | | | | | | | | | | Define SCHED_RESET_ON_FORK on Android `SCHED_RESET_ON_FORK` has the same value on Linux and Android.
| * | | SCHED_RESET_ON_FORK is defined on AndroidRyan Zoeller2021-09-132-0/+3
|/ / /