Here's a small module I wrote mostly out of necessity and feel it's my first bit of ChucK code worth submitting to a library repository. I checked out lick (http://github.com/heuermh/lick/), but noticed that all code there was written by heuermh and felt that maybe this wouldn't fit into lick's Grand Scheme. So I'm not sure where to send it except to this list. Comments, suggestions are welcome (but go easy on me -- I'm new to ChucK!). Thanks. file: ShredUtilities.ck /* ================================================================ Shred Utilities for the ChucK programming language Copyright (c) 2009 Robert Poor. All rights reserved. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/
. ================================================================ */
// ================================================================
// File: ShredUtilities.ck
//
// Description: ShredUtilities extend the basic shred (thread) mechanism
// with waitWithTimeout() methods.
//
// Author: Robert Poor