Hoooboy,
У меня еще одна проблема с памятью.
Я создаю окно Carbon (AGL) в C ++, и мне сообщают, что я autorelease
- без пула.
э-э ... что?
Я думал, что углерод существует за пределами NSAutoreleasePool
...
Когда я звоню glEnable(GL_TEXTURE_2D)
, чтобы сделать что-то, это выдает мне EXC_BAD_ACCESS
предупреждение - но если окно AGL никогда не получает release
'd, то не должно ли оно существовать? Установка set objc-non-blocking-mode
на (gdb)
не устраняет проблему.
Так что я предполагаю, что мой вопрос - ЧТО ТАКОЕ С УГЛЕРОДОМ / КАКАО / NSAutoreleasePool?
И ... есть ли ресурсы для Objective-C ++? Потому что такое дерьмо продолжает происходить со мной.
Спасибо
-Stephen
--- КОД ---
Функция тестового розыгрыша
void Channel::frameDraw( const uint32_t frameID)
{
eq::Channel::frameDraw( frameID );
getWindow()->makeCurrent(false);
glEnable(GL_TEXTURE_2D); // Throws Error Here
}
Make Current (следующий код взят из API эквалайзера LGPL Eyescale)
void Window::makeCurrent( const bool useCache ) const
{
if( useCache && getPipe()->isCurrent( this ))
return;
_osWindow->makeCurrent();
}
void AGLWindow::makeCurrent() const
{
aglSetCurrentContext( _aglContext );
AGLWindowIF::makeCurrent();
if( _aglContext )
{
EQ_GL_ERROR( "After aglSetCurrentContext" );
}
}
_aglContext
- это допустимая ячейка памяти (т. Е. Не NULL), когда я перехожу.
-S!
--- ОШИБКА ---
859 2958110720 //Users/slate/Documents/equalizer/XCode/../lib/client/aglWindow.cpp:367 278 Created AGL context 0x4867200 shared with 0
*** __NSAutoreleaseNoPool(): Object 0x1fc4a950 of class NSCarbonWindowContentView autoreleased with no pool in place - just leaking
*** __NSAutoreleaseNoPool(): Object 0x1fc4b120 of class NSCFArray autoreleased with no pool in place - just leaking
*** __NSAutoreleaseNoPool(): Object 0x1f410f50 of class NSMutableParagraphStyle autoreleased with no pool in place - just leaking
*** __NSAutoreleaseNoPool(): Object 0x45063f0 of class NSCFDictionary autoreleased with no pool in place - just leaking
*** __NSAutoreleaseNoPool(): Object 0x2f2ed50 of class NSPathStore2 autoreleased with no pool in place - just leaking
*** __NSAutoreleaseNoPool(): Object 0x44bf380 of class NSCFData autoreleased with no pool in place - just leaking
*** __NSAutoreleaseNoPool(): Object 0xa026cb08 of class NSCFString autoreleased with no pool in place - just leaking
etc...
--- STACK ---
#0 0x9252d3f1 in __NSAutoreleaseNoPool ()
#1 0x9243a794 in _CFAutoreleasePoolAddObject ()
#2 0x9243a4aa in -[NSObject(NSObject) autorelease] ()
#3 0x9372d023 in -[NSCarbonWindow initWithCarbonWindowRef:takingOwnership:disableOrdering:] ()
#4 0x9345bdee in _cocoaAppApplicationEventHandler ()
#5 0x920f00a9 in DispatchEventToHandlers ()
#6 0x920ef370 in SendEventToEventTargetInternal ()
#7 0x920ef1cf in SendEventToEventTargetWithOptions ()
#8 0x92114e44 in SendShowHideEvent ()
#9 0x921148b1 in _ShowHideWindows ()
#10 0x92177341 in ShowWindow ()
#11 0x2a01fab0 in eq::AGLWindow::configInitAGLWindow (this=0x400d260) at /Users/slate/Documents/equalizer/XCode/../lib/client/aglWindow.cpp:541
#12 0x2a01f380 in eq::AGLWindow::configInitAGLDrawable (this=0x400d260) at /Users/slate/Documents/equalizer/XCode/../lib/client/aglWindow.cpp:393
#13 0x2a01eb32 in eq::AGLWindow::configInit (this=0x400d260) at /Users/slate/Documents/equalizer/XCode/../lib/client/aglWindow.cpp:148
#14 0x2a0a25b9 in eq::Window::configInitOSWindow (this=0x283795f0, initID=0) at /Users/slate/Documents/equalizer/XCode/../lib/client/window.cpp:435
#15 0x2a09f31b in eq::Window::configInit (this=0x283795f0, initID=0) at /Users/slate/Documents/equalizer/XCode/../lib/client/window.cpp:394
#16 0x2a0a1226 in eq::Window::_cmdConfigInit (this=0x283795f0, command=@0x4009120) at /Users/slate/Documents/equalizer/XCode/../lib/client/window.cpp:720
#17 0x2a0ae8d5 in eq::net::CommandFunc<eq::net::Dispatcher>::operator() (this=0x1ed023b4, command=@0x4009120) at commandFunc.h:50
#18 0x2a0adf4a in eq::net::Dispatcher::invokeCommand (this=0x283795f0, command=@0x4009120) at /Users/slate/Documents/equalizer/XCode/../lib/net/dispatcher.cpp:121
#19 0x2a102ec4 in eq::net::Session::_invokeObjectCommand (this=0x3061600, command=@0x4009120) at /Users/slate/Documents/equalizer/XCode/../lib/net/session.cpp:622
#20 0x2a10448c in eq::net::Session::invokeCommand (this=0x3061600, command=@0x4009120) at /Users/slate/Documents/equalizer/XCode/../lib/net/session.cpp:575
#21 0x2a0901d3 in eq::Pipe::_runThread (this=0x28377c00) at /Users/slate/Documents/equalizer/XCode/../lib/client/pipe.cpp:310
#22 0x2a0987e4 in eq::Pipe::PipeThread::run (this=0x28377a80) at pipe.h:419
#23 0x2a01a307 in eq::base::Thread::_runChild (this=0x28377a80) at /Users/slate/Documents/equalizer/XCode/../lib/base/thread.cpp:125
#24 0x2a01a48d in eq::base::Thread::runChild (arg=0x28377a80) at /Users/slate/Documents/equalizer/XCode/../lib/base/thread.cpp:101
#25 0x958aea19 in _pthread_start ()
#26 0x958ae89e in thread_start ()
Спасибо за подсказку по настройке env NSAutoreleaseHaltNoPool = YES. Почему _cocoaAppApplicationEventHandler
здесь даже участвует? Я импортирую плагин AGL / Carbon в приложение CGL / Cocoa ... Какао получает весь углерод?
По данным MacWindows.h
/*
* [Mac]ShowWindow()
*
* Mac OS X threading:
* Not thread safe
*
* Availability:
* Mac OS X: in version 10.0 and later in Carbon.framework [32-bit only]
* CarbonLib: in CarbonLib 1.0 and later
* Non-Carbon CFM: in InterfaceLib 7.1 and later
*/
#if TARGET_OS_MAC
#define MacShowWindow ShowWindow
#endif
extern void
MacShowWindow(WindowRef window) AVAILABLE_MAC_OS_X_VERSION_10_0_AND_LATER;
Это должен быть просто прямой вызов Carbon ... так что я не знаю, почему Cocoa пытается справиться с этим. Это просто кажется странным, что он не работает здесь - но он отлично работает в другом проекте. Все настройки конфига и т. Д. Между проектами одинаковы, поэтому мне просто трудно понять, почему это проблема.
-S!