[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: permissions (and other) problems

From: Philip Martin <philip_at_codematters.co.uk>
Date: 2002-09-14 12:00:58 CEST

Philip Martin <philip@codematters.co.uk> writes:

> if (! svn_cancellation_pool)
> {
> write (stderr, message, sizeof (message));
> _exit();
> }

Or, (less drastic!)

   if (! svn_cancellation_pool)
     {
       write (stderr, message, sizeof (message));
       svn_cancelled = FALSE;
     }

It also occurs to me that the svn_async_cancel does not have to be
called from a signal handler, and so the cancellation mechanism
provides a way for the feedback functions to cause an operation to
abort. At present they have no way of doing that.

-- 
Philip Martin
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Sat Sep 14 12:01:35 2002

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.