aboutsummaryrefslogtreecommitdiff
path: root/src/os/time.h
Commit message (Collapse)AuthorAge
* Introduce nvim namespace: Move files.Eliseo Martínez2014-05-15
| | | | | | Move files from src/ to src/nvim/. - src/nvim/ becomes the new root dir for nvim executable sources. - src/libnvim/ is planned to become root dir of the neovim library.
* Introduce os_localtime_r() and os_get_local_time()Felipe Oliveira Carvalho2014-05-06
| | | | Replace localtime() with os_localtime_r() in `eval.c` and `undo.c`.
* Add comments and fix `os_microdelay` callThiago de Arruda2014-04-06
|
* Implement os_microdelay and os_delay on top of itThiago de Arruda2014-04-06
|
* Address clint warnings and other style issues.Thomas Wienecke2014-03-27
| | | | | | | * Add const. * Fix conditions (move && from end to start of line). * Use int32_t instead of long. * Use //-style comments.
* Rename mch_* functions to os_* in os module.Thomas Wienecke2014-03-27
|
* Implement `mch_delay` on top of libuvThiago de Arruda2014-03-24
Needed to temporarily move two static variables from os_unix.c to 'globals.h' as those are shared by other functions still in os_unix.