On 11/05/2016 10:49, Carlos H. Cantu wrote:
> FYI:
> http://www.viva64.com/en/b/0396/
>
>
On this code:

THREAD_ENTRY_DECLARE Service::run(THREAD_ENTRY_PARAM arg)
{
    int exit_code = -1;
    try
    {
        Service* svc = (Service*)arg;
        RefPtr<SvcMutex> ref(svc->svc_existence);
        int exit_code = svc->svc_service_run->serv_thd(svc);

        svc->started();
        svc->svc_sem_full.release();
        svc->finish(SVC_finished);
    }
    catch (const Exception& ex)
    {
        // Not much we can do here
        iscLogException("Exception in Service::run():", ex);
    }

    return (THREAD_ENTRY_RETURN)(IPTR) exit_code;
}

What should be returned in case of exception?

If we remove the redeclaration of exit_code, it was returning -1 in
exceptions and that may change.

So should the catch assign -1 to exit_code?


Adriano


------------------------------------------------------------------------------
Mobile security can be enabling, not merely restricting. Employees who
bring their own devices (BYOD) to work are irked by the imposition of MDM
restrictions. Mobile Device Manager Plus allows you to control only the
apps on BYO-devices by containerizing them, leaving personal data untouched!
https://ad.doubleclick.net/ddm/clk/304595813;131938128;j
Firebird-Devel mailing list, web interface at 
https://lists.sourceforge.net/lists/listinfo/firebird-devel

Reply via email to