Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
15answers
1k views

Exceptions vs return codes : do we lose something (while gaining something else)?

My question is pretty vague :o) - But here is an example : When I was writing C code, I was able to log counter's value when something failed : <...> for ( int i = 0 ; i < n ; i++ ) ...
5
votes
3answers
2k views

What is the Windows/cmd.exe equivalent of Linux/bash's $? — the program exit/return code?

In Unix/bash, I can simply say: $ echo $? to find out the return/exit code of a program, both from interactive and non-interactive shells. Now, how can I do the equivalent in Windows/cmd.exe?
4
votes
5answers
129 views

Is it a bad idea to mix bool and ret codes

I have some programs which make heavy use of libraries with enumerations of error codes. The kind where 0(first value of enum) is success and 1 is failure. In some cases I have my own helper ...
2
votes
2answers
163 views

How can I find out the result of sending a MadExcept bug report from a Delphi app

I can't find any way of determining whether it was possible to send a bug report from my D2006 app. If MadExcept can make some sort of return code available I can maybe provide some guidance to the ...
2
votes
1answer
984 views

Return code/ exit code for Oracle's DataPump API

I wrapped oracle's IMPDP and EXPDP in a console and could not find a good place for the return codes that these two return. I want to be more specific in pointing out errors than just a 0/1 Pass/Fail. ...
1
vote
1answer
190 views

Return code when OOM killer kills a process

I am running a multiprogrammed workload (based on SPEC CPU2006 benchmarks) on a POWER7 system using SUSE SLES 11. Sometimes, each application in the workload consumes a significant amount of memory ...
1
vote
1answer
161 views

Bash: Return without closing shell

I'd like to return an exit code from a BASH script that is called within another script, but could also be called directly. It roughly looks like this: #!/bin/bash dq2-get $1 if [ $? -ne 0 ]; then ...
1
vote
5answers
285 views

C++ checking return codes

Is it worthwhile checking return codes for methods that should not fail ? For example, I usually do: char buf[MAXBUF]; snprintf(buf, sizeof(MAXBUF), "%s.%d", str, time); Is it good practice to ...
1
vote
4answers
3k views

KSH shell script won't execute and returns 127 (not found)

Can anyone enlighten me why the following won't work? $ groups staff btgroup $ ls -l total 64 -rw-rw---- 1 sld248 btgroup 26840 Apr 02 13:39 padaddwip.jks -rwxrwx--- 1 sld248 ...
1
vote
1answer
1k views

easy way to see dos command return code

Sometimes I run a command in cmd such as: fc /b file1 file2 and would like to see the return code from fc. Is there a simple way to do this?
0
votes
1answer
47 views

Getting the return value of a command executed using backticks in Perl

I can do the following in bash: output=`command` retcode=$? Is there any way to do the same in Perl? Something like this: $output=`command` $retcode=???
0
votes
2answers
170 views

sqlldr return codes - ex_warn

somebody should enlight me. I want to know if my file is loaded complete in the database. if you check the return codes here you can see that 1 and 3 is a fail. EX_SUCC 0 EX_FAIL 1 EX_WARN 2 EX_FTL ...
0
votes
1answer
86 views

Ant Script return code problem while using with shell script?

Hi i am currently working with mqfte. I use a shell script to invoke an ant script. In turn the ant invokes a transfer. In case of the transfer failure i need a return code 1 and 0 in case of success. ...
0
votes
1answer
134 views

Visual Basic Application.GetSaveAsFilename dialogue response

This must be the daftest question. I have the following VB code that pop's up a dialogue to save a PDF file when a button is hit. It works fine, only I just realised that it executes the SAVE FILE ...
0
votes
1answer
914 views

Killing a process with taskkill /F returning code 0

I need to kill a windows process (java.exe). I'm currently using: taskkill.exe /F /IM java.exe I need to use the /F option since is a critical process,but in this way I get a return code 1 instead ...