summaryrefslogtreecommitdiff
path: root/sys/compat/linux/linux_timer.c
Commit message (Collapse)AuthorAgeFilesLines
* linux(4): Implement timer_settime64 syscall.Dmitry Chagin2022-06-171-5/+39
| | | | | | MFC after: 2 weeks (cherry picked from commit a1fd2911ddb06c1a2d23ebb636a46bc20ca498e7)
* linux(4): Implement timer_gettime64 syscall.Dmitry Chagin2022-06-171-3/+20
| | | | | | MFC after: 2 weeks (cherry picked from commit 783c1bd8cb0cf02f2cfb95418b0a115ed975086a)
* compat: clean up empty lines in .c and .h filesMateusz Guzik2020-09-011-1/+0
| | | | Notes: svn path=/head/; revision=365080
* Return EINVAL in case of incorrect sigev_signo value specified instead of ↵Dmitry Chagin2015-12-261-0/+4
| | | | | | | panicing. Notes: svn path=/head/; revision=292744
* Convert Linux signal number to the FreeBSD.Dmitry Chagin2015-05-241-2/+2
| | | | Notes: svn path=/head/; revision=283476
* Delete the duplicate of linux_to_native_clockid() function.Dmitry Chagin2015-05-241-20/+3
| | | | | | | | Differential Revision: https://reviews.freebsd.org/D1521 Reviewed by: trasz Notes: svn path=/head/; revision=283464
* Implement most of timer_{create,settime,gettime,getoverrun,delete}Bjoern A. Zeeb2014-09-181-0/+182
for amd64/linux32. Fix the entirely bogus (untested) version from r161310 for i386/linux using the same shared code in compat/linux. It is unclear to me if we could support more clock mappings but the current set allows me to successfully run commercial 32bit linux software under linuxolator on amd64. Reviewed by: jhb Differential Revision: D784 MFC after: 3 days Sponsored by: DARPA, AFRL Notes: svn path=/head/; revision=271743