Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2022-11-02[libc] Add definitions of a few missing macros and types.Siva Chandra Reddy
2022-11-02[libc] Add x86_64 implementation of setjmp and longjmp.Siva Chandra Reddy
2022-10-31[libc] Implement getoptAlex Brachet
2022-10-27Revert "[libc] Implement getopt"Alex Brachet
2022-10-27[libc] Implement getoptAlex Brachet
2022-10-25[libc] Add Linux implementations of time and clock functions.Siva Chandra Reddy
2022-10-25[libc] Add the header sys/types.h.Siva Chandra Reddy
2022-10-22[libc] Add select.h and the implementation of the select function for Linux.Siva Chandra Reddy
2022-10-19[libc] Add implementation of sigaltstack for linux.Siva Chandra Reddy
2022-10-18[libc] Add termios.h and the implementation of functions declared in it.Siva Chandra Reddy
2022-10-13[libc] Add a simple implementation of the posix_spawn function.Siva Chandra Reddy
2022-10-12[libc] add headers sys/auxv sys/prctl and sys/timeMichael Jones
2022-10-11[libc] Add POSIX functions posix_spawn_file_actions_*.Siva Chandra Reddy
2022-10-11[libc] add isattyMichael Jones
2022-10-11[libc] add sysconf with pagesizeMichael Jones
2022-10-10[libc] Add implementation of pthread_atfork.Siva Chandra Reddy
2022-10-10Implement `getrandom` function for linux targets.Schrodinger ZHU Yifan
2022-10-07[libc] add killMichael Jones
2022-10-07[libc] fix futex typeMichael Jones
2022-10-06[libc] Add POSIX execv and execve functions.Siva Chandra Reddy
2022-10-05[libc] Add the POSIX waitpid function and the BSD wait4 function.Siva Chandra Reddy
2022-10-05[libc] add CPU_COUNT macro and backing functionMichael Jones
2022-10-04[libc] implement basic rand and srandMichael Jones
2022-10-04[libc] Add a minimal implementation of the POSIX fork function.Siva Chandra Reddy
2022-10-01[libc] add syscall functionMichael Jones
2022-09-30[libc] Re-enable functions from signal.h and re-enable abort.Siva Chandra Reddy
2022-09-29[libc] Add GNU extension functions sched_getaffinity and sched_setaffinity.Siva Chandra Reddy
2022-09-29[libc] add clock_gettimeMichael Jones
2022-09-28[libc] Add implementation of pthread_once.Siva Chandra Reddy
2022-09-24Implement nanosleep per https://pubs.opengroup.org/onlinepubs/009695399/based...Raman Tenneti
2022-09-23[libc] move sys/mman macros to /includeMichael Jones
2022-09-21[libc] Add implementations of POSIX getpid, getppid, getuid, geteuid functions.Siva Chandra Reddy
2022-09-21[libc] Add implementation of functions stat, fstat and lstat.Siva Chandra Reddy
2022-09-17[libc][cmake] separate installing headersMichael Jones
2022-09-17[libc] Add implementation of POSIX "uname" function.Siva Chandra Reddy
2022-09-17[libc][Obvious] Fix typo in struct rlimit name - remove the "_t" suffix.Siva Chandra Reddy
2022-09-16[libc] Add implementation of POSIX setrlimit and getrlimit functions.Siva Chandra Reddy
2022-09-14[libc] Add implementation of POSIX function "access".Siva Chandra Reddy
2022-09-13[libc] Add POSIX functions dup, dup2, and GNU extension function dup3.Siva Chandra Reddy
2022-08-26[libc] Add Linux implementation of GNU extension function sendfile.Siva Chandra Reddy
2022-08-23[libc] Add Linux implementations of POSIX chdir, fchdir, chmod and fchmod.Siva Chandra Reddy
2022-08-23[libc][Obvious] Move some macros definitions to sys/stat.h.Siva Chandra Reddy
2022-08-19[libc][NFC] Change the libc fullbuild target name to "libc".Siva Chandra Reddy
2022-08-18[libc] Add a target to install libc in the full build mode.Siva Chandra Reddy
2022-08-17[libc][Obvious] Rearrange few header targets to satisfy dependency order.Siva Chandra Reddy
2022-08-12[libc] Add implemementations of thread specific data related API.Siva Chandra Reddy
2022-07-25[libc] Add dirent.h functions opendir, readdir, closedir and dirfd.Siva Chandra Reddy
2022-07-13[libc][NFC] Move thread platform data pointer to thread attributes.Siva Chandra Reddy
2022-06-02[libc] Add pthread_create and pthread_join functions.Siva Chandra Reddy
2022-06-01[libc] Keep all thread state information separate from the thread structure.Siva Chandra Reddy