|
|
|
|||||
|
Another small manual fix
On page 1399, section 42.9.1 "Server Configuration" for IceStorm:
The property: IceBox.Service.IceStorm was updated for Ice 3.1 to use the new entry point createIceStorm, but the 30 needs to be updated to a 31, I believe.
__________________
Caleb Tennis Analytical Engineering, Inc. http://www.aei-tech.com Project: Our facility infrastructure heavily utilizes Ice Gentoo ebuild maintainer for Ice, IceRuby, etc. |
|
|||||
|
Hi Michi,
I found another small one: Section 29.10 on threads (page 712 in my 3.1.0 manual): There is a small example about using the isAlive method. Namely, the line: t->isAlive() Isn't right because t is defined as a ThreadControl object and isAlive should be called directly on the thread.
__________________
Caleb Tennis Analytical Engineering, Inc. http://www.aei-tech.com Project: Our facility infrastructure heavily utilizes Ice Gentoo ebuild maintainer for Ice, IceRuby, etc. |
|
|||||
|
Also, one clarification I think you may want to make (this one bit me for a couple of hours today). If you don't use a ThreadPtr to hold onto your thread, the internal implementation (which uses ThreadPtr) will delete the thread instance once it exits the run() method.
I was using a pimpl class: class MyThread : public IceUtil::Thread { blah; }; MyClass::MyClass() { d = new MyThread; // d is a MyThread * } MyClass::~MyClass() { delete d; } And it was failing on double destruction since MyThread deletes itself once run exits. Changing the code to use an IceUtil::Handle<MyThread> for d make it work. I think it might be helpful to explicitly state this behavior in the docs. Thanks!
__________________
Caleb Tennis Analytical Engineering, Inc. http://www.aei-tech.com Project: Our facility infrastructure heavily utilizes Ice Gentoo ebuild maintainer for Ice, IceRuby, etc. |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Small typo in manual | ctennis | Bug Reports | 2 | 07-12-2006 06:55 PM |
| a small question | OrNot | Help Center | 4 | 03-22-2006 09:47 AM |
| A small bug in IcePacK ApplicationRegistryI.cpp | Yunqiao Yin | Bug Reports | 1 | 09-07-2005 01:34 PM |
| Small typing error | aka50 | Bug Reports | 1 | 08-19-2005 12:16 PM |
| Small success story | panic | Comments | 1 | 11-26-2004 10:36 AM |