~ubuntu-branches/ubuntu/raring/firebird2.5/raring-proposed

« back to all changes in this revision

Viewing changes to src/jrd/trace/TraceDSQLHelpers.h

  • Committer: Bazaar Package Importer
  • Author(s): Damyan Ivanov
  • Date: 2011-09-24 14:12:19 UTC
  • mfrom: (15.1.8 sid)
  • Revision ID: james.westby@ubuntu.com-20110924141219-pkxk7486f3d8ut9f
Tags: 2.5.1.26349-0~rc1.ds4-5
* Medium urgency for fixing a serious bug in testing

* Import a patch from upstream SVN fixing problems in poll() usage when
  process receives signals like SIGALRM.
  Closes: #642555 -- segfault in the remote interface when using alarm() in
  the client program

Show diffs side-by-side

added added

removed removed

Lines of Context:
188
188
 
189
189
        ~TraceDSQLFetch()
190
190
        {
 
191
                // don't trace fetch after EOS
 
192
                if (m_request && m_request->req_request && 
 
193
                        !(m_request->req_request->req_flags & req_active))
 
194
                {
 
195
                        return;
 
196
                }
191
197
                fetch(true, res_failed);
192
198
        }
193
199