diff options
author | Thomas Wienecke <wienecke.t@gmail.com> | 2014-03-27 12:38:33 +0100 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-03-27 19:57:55 -0300 |
commit | 5762c4e528cbd6629319bf3958d1f6554b399b20 (patch) | |
tree | 3be91959012944534451ec84584ff4be84286b7c /src/if_cscope.c | |
parent | 3f7011ab9185b4968e89086f77b054161a900beb (diff) | |
download | rneovim-5762c4e528cbd6629319bf3958d1f6554b399b20.tar.gz rneovim-5762c4e528cbd6629319bf3958d1f6554b399b20.tar.bz2 rneovim-5762c4e528cbd6629319bf3958d1f6554b399b20.zip |
Rename mch_* functions to os_* in os module.
Diffstat (limited to 'src/if_cscope.c')
-rw-r--r-- | src/if_cscope.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/if_cscope.c b/src/if_cscope.c index 85633db927..fc7864b6e8 100644 --- a/src/if_cscope.c +++ b/src/if_cscope.c @@ -2073,7 +2073,7 @@ static void cs_release_csp(int i, int freefnpp) waitpid_errno = errno; if (pid != 0) break; /* break unless the process is still running */ - mch_delay(50L, FALSE); /* sleep 50 ms */ + os_delay(50L, FALSE); /* sleep 50 ms */ } # endif /* @@ -2104,7 +2104,7 @@ static void cs_release_csp(int i, int freefnpp) alive = FALSE; /* cscope process no longer exists */ break; } - mch_delay(50L, FALSE); /* sleep 50ms */ + os_delay(50L, FALSE); /* sleep 50ms */ } } if (alive) |