On Fri, Jul 20, 2012 at 5:22 PM, JP Richardson <jprichard...@gmail.com> wrote:
> Hi, I'm not sure if this is the right place to post this. I apologize in
> advance if it's not.
>
> I'm trying to port my `kexec` module
> [https://github.com/jprichardson/node-kexec] to Node v0.8. The problem is
> that any of the `exec` family of functions from unistd.h don't seem to work
> inside of a Node v0.8 add on. The calling process just terminates without
> actually calling the process.
>
> Am I missing anything different in regard to Node v0.8 native addons?
>
> My binding.gyp file is pretty simple:
>
> {
>   'targets': [
>     {
>       'target_name': 'kexec',
>       'sources': [ 'src/node_kexec.cpp' ]
>     }
>   ]
> }
>
> Oh ya, I'm testing this on Mac OS X Lion. Any help would be appreciated.
> Thanks!

nodejs-dev is intended for core development discussion, not add-ons.
Don't worry about it, just post it to nodejs next time.

It's possible that we're handling signals different than before. Have
you checked with truss/dtruss/dtrace what exactly happens?

Reply via email to