~ubuntu-branches/ubuntu/intrepid/basilisk2/intrepid

« back to all changes in this revision

Viewing changes to src/MacOSX/NNThread.m

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard
  • Date: 2008-03-06 19:33:01 UTC
  • mfrom: (2.1.4 gutsy)
  • Revision ID: james.westby@ubuntu.com-20080306193301-cc2ofn705nfsq3y0
Tags: 0.9.20070407-4
* Update copyright-check cdbs snippet to parse licensecheck using perl:
  + No longer randomly drops newlines
  + More compact hint file (and ordered more like wiki-proposed new copyright
    syntax).
  + No longer ignore files without copyright.
* Update copyright_hints.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
//  NNThread.m -Not Nextstep Thread?
3
3
//                              Nigel's Nice Thread?
4
4
//
5
 
//      Revision 1.3, Tuesday Oct 8 2002
 
5
//      Revision 1.4, Tuesday May 25 2004
6
6
//
7
7
//  Created by Nigel Pearson on Tue Nov 28 2000.
8
8
//  Public Domain. No rights reserved.
181
181
        return self;
182
182
}
183
183
 
 
184
- (NNTimer *) initWithAutoRelPool
 
185
{
 
186
        self = [super init];
 
187
        allocPool = YES;
 
188
        repeating = YES;
 
189
        return self;
 
190
}
 
191
 
 
192
 
184
193
- (void) changeIntervalTo: (int)number
185
194
                                        units: (NNTimeUnits)units
186
195
{