Created
December 17, 2009 04:52
-
-
Save tolmasky/258532 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function mainRunLoop() | |
{ | |
track_1(); | |
[CPApp nextEventMaskMask:blah inMode:CPDefaultRUnLoopMode callback:mainRunLoop]; | |
} | |
function track_1() | |
{ | |
track_2(); | |
[CPApp nextEventMaskMask:blah inMode:CPDefaultRUnLoopMode callback:track_1]; | |
} | |
function track_2() | |
{ | |
[CPApp nextEventMaskMask:blah inMode:CPDefaultRUnLoopMode callback:track_1]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment