Results 26 comments of Vladimir Vrzić

The two ps-less ways are also overly complicated, spawning too many processes and using too many tools (`find(1)`, `awk(1)`, `sed(1)`, `sort(1)`)... This can (on Linux) be as simple and fast...

@jdebp It seems that `gvim` traps and [ignores](https://github.com/vim/vim/blob/master/src/os_unix.c#L1355) `SIGHUP`. `SIGTERM` would be a more elegant solution, allowing `vim` to clean up on exit.

@dkalaluhi That's a straw man argument, as no one is trying to make a point of performance in this thread. The point we are trying to make is that clear,...

I took a quick glance, node 66 (Starford Barracks) seems to be missing in the in-memory location linked list when using the Czech version. The issue, then, would seem to...

While nan's `IdleNotification` could be changed to use `MemoryPressureNotification` with newer versions of v8, e.g. ```cpp #if defined(V8_MAJOR_VERSION) && (V8_MAJOR_VERSION > 11 || \ (V8_MAJOR_VERSION == 11 && defined(V8_MINOR_VERSION) &&...

From reading the v8 API docs, while both `IdleNotificationDeadline` and `MemoryPressureNotification` boil down to embedder asking v8 to run GC, the semantics are different. Concretely the idea behind `IdleNotification` was...