1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-28 11:35:35 +03:00

GH-216 Change wording

This commit is contained in:
Tae Won Ha 2016-07-17 15:59:01 +02:00
parent e51c823b17
commit 7db9cf1440
No known key found for this signature in database
GPG Key ID: E40743465B5B8B44

View File

@ -14,7 +14,7 @@ NeoVimServer *_neovim_server;
// Ensure no parent-less NeoVimServer processes are left when the main app crashes.
// From http://mac-os-x.10953.n7.nabble.com/Ensure-NSTask-terminates-when-parent-application-does-td31477.html
static void observer_parent_termination(void *arg) {
static void observe_parent_termination(void *arg) {
pid_t ppid = getppid(); // get parent pid
int kq = kqueue();
@ -39,7 +39,7 @@ static void observer_parent_termination(void *arg) {
int main(int argc, const char *argv[]) {
uv_thread_t parent_observer_thread;
uv_thread_create(&parent_observer_thread, observer_parent_termination, NULL);
uv_thread_create(&parent_observer_thread, observe_parent_termination, NULL);
@autoreleasepool {
NSArray<NSString *> *arguments = [NSProcessInfo processInfo].arguments;