State Threads 1.8 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News State Threads 1.8 (Default branch)
# 1  
Old 12-19-2008
State Threads 1.8 (Default branch)

The State Threads is a small application library which provides a foundation for writing fast and highly scalable Internet applications (such as Web servers, proxy servers, mail transfer agents, etc.) on UNIX-like platforms. It offers a threading API for structuring a network application as an event-driven state machine.License: Mozilla Public License (MPL)Changes:
This release adds support for kqueue and epoll on platforms that support them, and the ability to choose the event notification system at program startup. It also adds the functions st_writev_resid(), st_readv_resid(), and st_readv(). It incorporates public definitions of ST_UTIME_NO_TIMEOUT and ST_UTIME_NO_WAIT. The documentation has been fixed.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. AIX

Open firmware state to running state

Hi Admins, I am having a whole system lpar in open firmware state on HMC. How can I bring it to running state ? Let me know. Thanks. (2 Replies)
Discussion started by: snchaudhari2
2 Replies
Login or Register to Ask a Question
State(3)						User Contributed Perl Documentation						  State(3)

NAME
State - A package to keep track of plotting commands SYNOPSIS
use PDL::Graphics::State; DESCRIPTION
This is a very simple, at present almost trivial, package to keep track of the current set of plotting commands. USAGE
You create a new object by calling the "new" operator $state = PDL::Graphics::State->new(); Then for each new command you call "add" on this object so that for a call to "line" of the form line $x, $y, $opt; the call to "add" would be like $state->add(&line, 'line', [$x, $y], $opt); which is stored internally as: [&line, 'line', [$x, $y], $opt] The state can later be extracted using "get" which returns the state object which is an array of anonymous arrays like the one above where the first object is a reference to the function, the second an anomymous array of arguments to the function and finally an anonymous hash with options to the command. If you know the order in which you inserted commands they can be removed by calling "remove" with the number in the stack. No further interaction is implmented except "clear" which clears the stack and "copy" which returns a "deep" copy of the state. AUTHOR
Jarle Brinchmann (jarle@astro.ox.ac.uk) after some prodding by Karl Glazebrook. All rights reserved. There is no warranty. You are allowed to redistribute this software / documentation under certain conditions. For details, see the file COPYING in the PDL distribution. If this file is separated from the PDL distribution, the copyright notice should be included in the file. perl v5.8.0 2001-09-26 State(3)