/* * mach.m * * Copyright (c) 2007 Naoki Hiroshima * You can redistribute it and/or modify it under the same terms as GPL2. * * Author:: Naoki Hiroshima * * $ gcc mach.m -bundle -framework foundation * */ #import @interface Mach : NSObject { } @end @implementation Mach +(unsigned long)taskSelf { return mach_task_self(); } @end void Init_mach() { }