Browsing projects by Tag(s)

Select a tag to browse associated projects and drill deeper into the tag cloud.

Showing page 1 of 1

A simple library implementing a thread pool in C, using POSIX threads. The library has been tested to work with both LinuxThreads and NPTL. Features: multiple worker pools, manager-free design (no thread overhead), asynchronous cancellation safe design, fork-safe design, very few dependencies, automated unit testing, well-documented.

0
 
  0 reviews  |  1 user  |  10,218 lines of code  |  1 current contributor  |  Analyzed 5 days ago
 
 

This project contains a bunch of Java-packages to ease your life! :) They use AOP (AspectJ) to realize most of it's functionality. --- ExampleWithout Perspectives// Pretty ugly code. // Assuming you have a bunch of methods to modify the state of your UI // it's tedious to write the ... [More] 'boilerplate-stuff' over and over again. public void updateUI(String statusText) { SwingUtilities.invokeLater(new Runnable() { @Override public void run() { myLabel.setText(statusText); } }); }With Perspectives// whoaa!!1 It's magic... // This method is automatically scheduled to be executed within the // JFC/Swing event dispatching thread (EDT). @SwingThread public void updateUI(String statusText) { myLabel.setText(statusText); }Pretty cool, eh?! ;) [Less]

0
 
  0 reviews  |  0 users  |  0 current contributors
 
 
 
 

Creative Commons License Copyright © 2013 Black Duck Software, Inc. and its contributors, Some Rights Reserved. Unless otherwise marked, this work is licensed under a Creative Commons Attribution 3.0 Unported License . Ohloh ® and the Ohloh logo are trademarks of Black Duck Software, Inc. in the United States and/or other jurisdictions. All other trademarks are the property of their respective holders.