~ubuntu-branches/ubuntu/precise/nodejs/precise

« back to all changes in this revision

Viewing changes to src/node_signal_watcher.cc

  • Committer: Bazaar Package Importer
  • Author(s): Jérémy Lal
  • Date: 2010-08-20 11:49:04 UTC
  • mfrom: (7.1.6 sid)
  • Revision ID: james.westby@ubuntu.com-20100820114904-lz22w6fkth7yh179
Tags: 0.2.0-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
  target->Set(String::NewSymbol("SignalWatcher"),
24
24
      constructor_template->GetFunction());
25
 
  
 
25
 
26
26
  callback_symbol = NODE_PSYMBOL("callback");
27
27
}
28
28
 
96
96
}
97
97
 
98
98
}  // namespace node
 
99
 
 
100
NODE_MODULE(node_signal_watcher, node::SignalWatcher::Initialize);