migrating talk/base to webrtc/base. BUG=N/A R=niklas.enbom@webrtc.org Review URL: https://webrtc-codereview.appspot.com/17479005 git-svn-id: http://webrtc.googlecode.com/svn/trunk@6129 4adac7df-926f-26a2-2b94-8c16560cd09d
45 lines
1.7 KiB
Plaintext
45 lines
1.7 KiB
Plaintext
/*
|
|
* Copyright 2007 The WebRTC Project Authors. All rights reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
// Helper function for using Cocoa with Posix threading.
|
|
|
|
#import <assert.h>
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import "webrtc/base/maccocoathreadhelper.h"
|
|
|
|
namespace rtc {
|
|
|
|
// Cocoa must be "put into multithreading mode" before Cocoa functionality can
|
|
// be used on POSIX threads. The way to do that is to spawn one thread that may
|
|
// immediately exit.
|
|
void InitCocoaMultiThreading() {
|
|
if ([NSThread isMultiThreaded] == NO) {
|
|
// The sole purpose of this autorelease pool is to avoid a console
|
|
// message on Leopard that tells us we're autoreleasing the thread
|
|
// with no autorelease pool in place; we can't set up an autorelease
|
|
// pool before this, because this is executed from an initializer,
|
|
// which is run before main. This means we leak an autorelease pool,
|
|
// and one thread, and if other objects are set up in initializers after
|
|
// this they'll be silently added to this pool and never released.
|
|
|
|
// Doing NSAutoreleasePool* hack = [[NSAutoreleasePool alloc] init];
|
|
// causes unused variable error.
|
|
NSAutoreleasePool* hack;
|
|
hack = [[NSAutoreleasePool alloc] init];
|
|
[NSThread detachNewThreadSelector:@selector(class)
|
|
toTarget:[NSObject class]
|
|
withObject:nil];
|
|
}
|
|
|
|
assert([NSThread isMultiThreaded]);
|
|
}
|
|
|
|
} // namespace rtc
|