Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
5answers
9k views

What is the difference between exit() and abort()?

In C and C++, what is the difference between exit() and abort()? I am trying to end my program after an error (not an exception).
18
votes
9answers
791 views

Is C#'s using statement abort-safe?

I've just finished reading "C# 4.0 in a Nutshell" (O'Reilly) and I think it's a great book for a programmer willing to switch to C#, but it left me wondering. My problem is the definition of using ...
14
votes
9answers
7k views

C++: How to implement a timeout for an arbitrary function call?

I need to call a library function that sometimes won't terminate within a given time, unfortunately. Is there a way to call the function but abort it if it doesn't terminate within n seconds? I ...
12
votes
1answer
365 views

abort() is not __declspec(noreturn) in VS2010

In my copy of VS2010, stdlib.h contains (lines 353-355) _CRTIMP __declspec(noreturn) void __cdecl exit(_In_ int _Code); _CRTIMP __declspec(noreturn) void __cdecl _exit(_In_ int _Code); _CRTIMP void ...
8
votes
5answers
671 views

Thread does not abort on application closing

I have an application which does some background task (network listening & reading) in separate Thread. It seems however that the Thread is not being Terminated/Aborted when I close the ...
8
votes
5answers
10k views

Killing a thread (C#)

I have created a thread that has a method that's running. But sometimes I will want to kill the thread even if the method is still working. How can I do this? I tried Thread.Abort() but it seems to ...
8
votes
5answers
2k views

Browser waits for ajax call to complete even after abort has been called (jQuery)

I have some (potentially) long-running ajax calls that I would like to abort if the user navigates to another page. The following jQuery code calls abort on all pending XMLHttpRequest objects upon ...
7
votes
6answers
2k views

How do I abort/cancel TPL Tasks?

In a thread, I create some System.Threading.Task and start each task. When I do a .Abort() to kill the thread, the tasks are not aborted. How can I transmit the .Abort() to my tasks ?
7
votes
4answers
514 views

When abort() is preferred over exit()?

I know the differences between the two. One notable thing is that abort() sends SIGABRT signal, so it may be relevant when your software relies on them. But for a typical application exit() seems to ...
6
votes
1answer
22k views

How to abort a running program in MATLAB?

Sometimes after calling a function (which takes some 30 odd minutes to finish), you realize that you did something wrong and want to stop the program. How do you do that in MATLAB? What I do is ...
6
votes
5answers
2k views

Can a PHP script abort itself or detect abortion?

PHP scripts can continue executing after the HTTP page request, so how do I finally stop it executing when I'm done with it? Also, is there an event to detect when the OS is going to forcibly abort ...
5
votes
3answers
216 views

How do I abort a .NET task?

Here's the situation, I am writing the framework for a code war contest. As the code runs, for each turn, it calls a method in the library provided by each contestant. The rules of the contest is the ...
5
votes
4answers
506 views

C# Threads.Abort()

If a thread is running a function func1 that calls another function func2 inside it... Then I called thread.Abort() Will this stop func1 only OR func1 and func2 and all the functions func1 has ...
5
votes
1answer
4k views

Response.Redirect results in “Object moved to here”

I'm working on a C# ASP.NET page that normally ends up redirecting to a "file:" URL. This seems to work fine the majority of the time, in the majority of circumstances, but occasionally (and, on my ...
5
votes
3answers
301 views

Cancel a running build process in VS

Is it possible to cancel/abort a running build process in Visual Studio 2008? How?
4
votes
2answers
362 views

I cannot stop an ajax request using jQuery and abort() function

My jQuery is below: var x = $.ajax({ dataType: "jsonp", url: "https://ajax.googleapis.com/ajax/services/search/images?q=google&v=1.0", success: function(msg){ alert( "Jsonp ...
3
votes
0answers
63 views

How do I abort outstanding map tile request with OpenLayers when the zoom changes?

I have an OpenLayers map with a TMS layer. For each zoom change, my map makes about 56 requests for map tiles (depending on the map/screen size). If the user rapidly zooms in or out, all these map ...
3
votes
3answers
117 views

Declaration of void abort() throws different exceptions

I am trying to write some C++ code (using the C++ API) for Festival and am getting stuck while trying to compile. Here is how I invoke g++: g++ -Wall -pedantic -I../ -I../speech_tools/include/ ...
3
votes
2answers
115 views

Standard 401 response when using HTTP auth in flask

In flask, I'm using the following snippet to enable HTTP auth: def authenticate(): return Response('<Why access is denied string goes here...>', 401, {'WWW-Authenticate':'Basic realm="Login ...
3
votes
1answer
403 views

abort() triggers Error Undefined in chrome

I use the following code to throttle get requests in race conditions: if (currentAjaxRequest !== null) { currentAjaxRequest.abort(); } var query_string = ...
3
votes
3answers
168 views

Abort keystroke sequence?

When using Vim I sometimes find myself midway through entering a key combination and change my mind or realise it's incorrect (I'm still learning). For example I may have typed d, 4 and be about to ...
3
votes
7answers
231 views

Quick successful exit from C++ with lots of objects allocated

I'm looking for a way to quickly exit a C++ that has allocated a lot of structures in memory using C++ classes. The program finishes correctly, but after the final "return" in the program, all of the ...
3
votes
5answers
160 views

Can you abort a set procedure of a property

I am programming in C#.NET. It is possible to abort the set procedure of a class property without throwing an exception? Here is what I want to do... public int RandomProperty { set { ...
3
votes
3answers
640 views

Thread Abort in .NET

I have a thread thats analyzing a file and making transactional calls to the database, each transaction has a audit entry as part of its transaction. Is there anything vastly wrong with calling ...
3
votes
1answer
428 views

Replacing aborts() for unresolved errors in iPhone/CoreData

I have quite a few places in my iPhone application with a line like this: if (![context save:&error]) { /* Replace this implementation with code to handle the error appropriately. abort() ...
2
votes
3answers
123 views

how to abort a c++ program and exit with status 0?

I want to kill my c++ program and terminate immediately without activating destructors of any kind, especially static and global variables, but I want to exit with status 0 - abort() will not work ...
2
votes
3answers
36 views

Can you tell a php server to abort the execution of a previously running script?

My web page uses an ajax call to return data from a very long php script, so if I exit the page early and reload the page, that php script is still being carried out, which will cause me problems. ...
2
votes
2answers
195 views

What are the general causes of abort signal?

I have an application, in C++ over running linux, which on exit gets abort signal. Before I go after the code to hunt down the problem, I need to know what could be the cases in which I shall get an ...
2
votes
0answers
992 views

close vs abort ChannelFactory WCF

Two common problems in WCF that many people face is the impossibility of loading the client configuration from different configuration files and Close vs Abort issue. 1.) This is a common scenario ...
2
votes
3answers
565 views

Stopping product saving process in observer

I am currently developing a module working with the product edit in the backend. Its purpose is to retrieve categories the product belongs to and populate an attribute (the Brand attribute) with the ...
2
votes
1answer
1k views

How to abort an interactive rebase if --abort doesn't work?

I've got myself into a muddle via an interactive rebase, and I now wish to abort it. (i.e. go back to the point before I was dropped into interactive rebase mode, in my case via git pull --rebase.) ...
2
votes
1answer
584 views

Finish a call to SerialPort.ReadLine()

I'm writting a program that parses the replies to AT commands from a GSM modem connected to the PC via a serial port. In this program I've got a thread that "listens" for all the replies on the serial ...
2
votes
3answers
125 views

What should I do with a thread when it's done ? leave it or abort it?

I create normal threads in asp.net application. After the thread is done what should I do ? leave it (it will get back to thread pool) or abort it. Thread thread = new Thread(new ThreadStart(work)); ...
2
votes
2answers
246 views

c# windows form does not respond while multithreading

I have a windows form with just two functionalities : the first one is loading some rows in a database and the second functionality is processing those rows using a given number of threads because ...
2
votes
4answers
777 views

c++ abort override

Some C++ libraries call abort() function in the case of error (for example, SDL). No helpful debug information is provided in this case. It is not possible to catch abort call and to write some ...
2
votes
3answers
680 views

PHP: ignore_user_abort(true) in all scripts

I have a website which works with PHP on the server side. Users access pages and PHP does some calculations, writes data to a MySQL database etc. Imagine a user accesses a page where PHP creates an ...
2
votes
2answers
297 views

What happens to my ajax request after window unload

what happens to my syn/asyn XMLHttpRequest (IE) when the page unload but the request is still on his way? Is it meaningful to bind to the $(window).unload and call the .abort() method for my request ...
2
votes
3answers
1k views

Ruby Command Line: How can I send the CTRL-C command via text in the command line?

I am trying to create a simple Automator droplet that will take the style.less file dropped into it and run the following LESS command on it: $ LESSC {DROPPED_FILE} --watch which will monitor the ...
2
votes
1answer
2k views

jquery and xhr.abort

When aborting an ajax request with the xhr that's passed back from the jQuery.ajax function, firebug shows that it's still trying to load that request. It doesn't block any more requests that are ...
2
votes
3answers
909 views

How do I abort a MATLAB m-file function from C/C++?

I deployed a MATLAB project into a DLL, to be called from C++, and it works just fine. Happy days. But what happens when the user asks to cancel an operation? I tried creating a global variable ...
2
votes
5answers
1k views

How do you cleanly abort a Delphi program?

I've got a program that's having some trouble during shutdown, raising exceptions that I can't trace back to their source. It appears to be timing-related and non-deterministic. This is occurring ...
1
vote
1answer
98 views

Why does Mercurial return “Abort: Access is Denied” when trying to push a repository?

I'm running into a problem with a user not being able to push his commits into a Mercurial repository and am perplexed as to why it's not working for him. I've tried several things to figure out ...
1
vote
1answer
112 views

CXF WS, Interceptor: stop processing, respond with fault

I'm scratching my head over this: Using an Interceptor to check a few SOAP headers, how can I abort the interceptor chain but still respond with an error to the user? Throwing a Fault works regarding ...
1
vote
1answer
96 views

Cancel DELETE with TRIGGERs

I want to cancel a TRIGGER of DELETE. The idea is BEFORE DELETE, set column hide = "Y" then CANCEL the TRIGGER event and NOT really DELETE the row. It's possible?
1
vote
1answer
43 views

Abort the loading of a shared library from its initializer

I have a shared library that sets up shared memory in its initializer. When I can't allocate the shared memory, I would like to abort the loading of this library by the calling program, so that this ...
1
vote
1answer
104 views

FORCE closing 'rogue' threads if abort() doesn't work

As title implies. Yes, i know it's horribad to use .abort() but hear me out I'm using 2 threads, The main thread (of my app) and a socket listen thread (familiar sound anyone?) Instead of using ...
1
vote
2answers
88 views

Abort subsequent execution in java

I am a beginner in java and I used Delphi for a long time. When I want to leave a method I need to use the "exit" method and in java I use "return". To abort all subsequent methods I call the abort ...
1
vote
1answer
81 views

Android Abort BroadcastReceiver

I am trying to stop a BroadcastReceiver from showing up once I exit my application. Until now I only made it show a Toast when an App is installed. It works really well, except that if I exit the app ...
1
vote
1answer
49 views

Security Exception with Thread.Abort

When I call Thread.Abort I receive the following exception: Request for the permission of type 'System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.0.0, Culture=neutral, ...
1
vote
2answers
42 views

Windows Workflow 4 Abort from Internal Object?

I have a workflow (simple sequence) that calls InvokeMethod on an object. I would like to abort the entire workflow based on code within the object. This is kind of like ...

1 2 3