ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Net-FCP/FCP/Event/Coro.pm
Revision: 1.2
Committed: Thu Dec 1 19:08:36 2005 UTC (20 years, 9 months ago) by root
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +0 -0 lines
State: FILE REMOVED
Log Message:
*** empty log message ***

File Contents

# Content
1 package Net::FCP::Event::Coro;
2
3 use base Net::FCP::Event::Event;
4
5 use Coro;
6 use Coro::Event;
7 use Coro::Signal;
8
9 #############################################################################
10
11 sub new_signal {
12 new Coro::Signal;
13 }
14
15 1;
16