Bug 153837 - [NEW PORT] p5-Async-Interrupt: allow C/XS libraries to interrupt perl asynchronously
Summary: [NEW PORT] p5-Async-Interrupt: allow C/XS libraries to interrupt perl asynchr...
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Martin Wilke
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-01-10 08:20 UTC by Mikhail T.
Modified: 2011-01-28 17:30 UTC (History)
0 users

See Also:


Attachments
file.shar (1.93 KB, text/plain)
2011-01-10 08:20 UTC, Mikhail T.
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Mikhail T. 2011-01-10 08:20:09 UTC
This module implements a single feature only of interest to advanced perl modules, namely asynchronous interruptions.
You can use this module by creating an Async::Interrupt object for each such event source. This object stores a perl and/or a C-level callback that is invoked when the Async::Interrupt object gets signalled. It is executed at the next time the perl interpreter is running (i.e. it will interrupt a computation, but not an XS function or a syscall).
Comment 1 Martin Wilke freebsd_committer freebsd_triage 2011-01-28 05:06:40 UTC
Responsible Changed
From-To: freebsd-ports-bugs->miwi

I'll take it.
Comment 2 dfilter service freebsd_committer freebsd_triage 2011-01-28 17:22:49 UTC
miwi        2011-01-28 17:22:44 UTC

  FreeBSD ports repository

  Modified files:
    devel                Makefile 
  Added files:
    devel/p5-Async-Interrupt Makefile distinfo pkg-descr pkg-plist 
  Log:
  This module implements asynchronous notifications that enable you
  to signal running perl code from another thread, asynchronously,
  and sometimes even without using a single syscall.
  
  WWW:    http://search.cpan.org/dist/Async-Interrupt/
  
  PR:             ports/153837
  Submitted by:   Mikhail T. <michael at fun-box.ru>
  Feature safe:   yes
  
  Revision  Changes    Path
  1.4204    +1 -0      ports/devel/Makefile
  1.1       +21 -0     ports/devel/p5-Async-Interrupt/Makefile (new)
  1.1       +2 -0      ports/devel/p5-Async-Interrupt/distinfo (new)
  1.1       +5 -0      ports/devel/p5-Async-Interrupt/pkg-descr (new)
  1.1       +8 -0      ports/devel/p5-Async-Interrupt/pkg-plist (new)
_______________________________________________
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
Comment 3 Martin Wilke freebsd_committer freebsd_triage 2011-01-28 17:23:02 UTC
State Changed
From-To: open->closed

New port added, with minor changes. Thanks!