Sponsored Content
Top Forums UNIX for Dummies Questions & Answers UNIX Scripts "Load Error" with MicroFocus COBOL subprograms Post 302396934 by Corona688 on Friday 19th of February 2010 08:11:36 PM
Old 02-19-2010
All we can really tell is that it's trying to generate an exception and failing, not why. Though that seems to be a stack unwinding function so it might be a pretty bad exception, maybe a crash.
 

9 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Commands on Digital Unix equivalent to for "top" and "sar" on other Unix flavour

Hi, We have a DEC Alpha 4100 Server with OSF1 Digital Unix 4.0. Can any one tell me, if there are any commands on this Unix which are equivalent to "top" and "sar" on HP-UX or Sun Solaris ? I am particularly interested in knowing the CPU Load, what process is running on which CPU, etc. ... (1 Reply)
Discussion started by: sameerdes
1 Replies

2. UNIX for Dummies Questions & Answers

error running COBOL - ".loader does not exist"

Hello. I am new to the unix environment. Currently, I am taking existing COBOL source code and attempting to compile and run on our new UNIX machine. I have succesfully compiled an object. When I try to run I get the follwing error: 0509-036 Cannot load program abeunix.o because of the... (16 Replies)
Discussion started by: jbrubaker
16 Replies

3. HP-UX

ERROR: more than one instance of overloaded function "vprintf" has "C" linkage

Hi people! I've got this own library: -------------------------------------------- Personal.h -------------------------------------------- #ifdef __cplusplus extern "C" { #endif #include <stdio.h> #include <stdarg.h> #include <string.h> ... (0 Replies)
Discussion started by: donatoll
0 Replies

4. Shell Programming and Scripting

Unix commands delete all files starting with "X" except "X" itself. HELP!!!!?

im a new student in programming and im stuck on this question so please please HELP ME. thanks. the question is this: enter a command to delete all files that have filenames starting with labtest, except labtest itself (delete all files startign with 'labtest' followed by one or more... (2 Replies)
Discussion started by: soccerball
2 Replies

5. Shell Programming and Scripting

awk command to replace ";" with "|" and ""|" at diferent places in line of file

Hi, I have line in input file as below: 3G_CENTRAL;INDONESIA_(M)_TELKOMSEL;SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL My expected output for line in the file must be : "1-Radon1-cMOC_deg"|"LDIndex"|"3G_CENTRAL|INDONESIA_(M)_TELKOMSEL"|LAST|"SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL" Can someone... (7 Replies)
Discussion started by: shis100
7 Replies

6. UNIX for Dummies Questions & Answers

Unix "look" Command "File too large" Error Message

I am trying to find lines in a text file larger than 3 Gb that start with a given string. My command looks like this: $ look "string" "/home/patrick/filename.txt" However, this gives me the following message: "look: /home/patrick/filename.txt: File too large" So, I have two... (14 Replies)
Discussion started by: shishong
14 Replies

7. Solaris

"Load Average" vs "virtual processor"

Hi, I have one question regarding the understanding of “load average” in a platform with virtual processors. Suppose in this situation: Total number of physical processors: 1 Number of virtual processors: 32 Total number of cores: 4 Number of cores per physical... (1 Reply)
Discussion started by: MDING
1 Replies

8. SCO

Virtualize SCO 5.0.6 with Microfocus COBOL - Help needed

Hi all, I am trying to virtualize a running SCO 5.0.6 system with microfocus cobol installed. I have already managed (thanks to the people in this forum) to install the operating system. I dont have the cobol installation media anymore. I have copied (using cpio) all directories from... (3 Replies)
Discussion started by: sopela123
3 Replies

9. Shell Programming and Scripting

Bash script - Print an ascii file using specific font "Latin Modern Mono 12" "regular" "9"

Hello. System : opensuse leap 42.3 I have a bash script that build a text file. I would like the last command doing : print_cmd -o page-left=43 -o page-right=22 -o page-top=28 -o page-bottom=43 -o font=LatinModernMono12:regular:9 some_file.txt where : print_cmd ::= some printing... (1 Reply)
Discussion started by: jcdole
1 Replies
ns_adp_exception(3aolserver)				    AOLserver Built-In Commands 			      ns_adp_exception(3aolserver)

__________________________________________________________________________________________________________________________________________________

NAME
ns_adp_abort, ns_adp_break, ns_adp_exception, ns_adp_return - ADP exception handling SYNOPSIS
ns_adp_abort ?result? ns_adp_break ?result? ns_adp_exception ?varName? ns_adp_return ?result? _________________________________________________________________ DESCRIPTION
These commands enable early return and interrupt of an ADP execution. Internally, the exception routines sets a flag and return TCL_ERROR to begin unwinding the current Tcl call stack and return control to the ADP evaluation engine. It is possible for an enclosing catch com- mand to catch the exception and stop Tcl from returning control to ADP. The ns_adp_exception command can be used to test for this condi- tion. ns_adp_abort ?result? This command stops ADP processing, raising an execution and unwinding the stack to the top level as an error condition. The request handling code which invokes the first ADP file will normallly generate an error message in this case, ignoring the contents of the output buffer, if any. Note that the exeception can be caught by a catch command in script block which executes ns_adp_abort. How- ever, when that block returns control to the ADP execution engine, the stack will be continue to be unwound. The optional result argument, if present, will be used to set the Tcl interpreter result string. ns_adp_break ?result? This command stops execution of ADP and unwinds the ADP call stack. Unlike ns_adp_abort, the request handling code will generate a normal HTTP response with any contents of the output buffer. The optional result argument, if present, will be used to set the Tcl interpreter result string. ns_adp_exception ?varName? This command returns a boolean value if an exception has been raised. The optional varName provides the name of a variable to store one of ok, break, abort, or return to indicate the type of exception raised. ns_adp_return ?result? This function halts processing of the current ADP and sends any pending output (from ns_adp_puts or static HTML) up to the point where it was called to the browser. Nothing in the current ADP is output or executed after it is called. The return_value, if spec- ified, becomes the return value of the ADP. Note that this function returns only one level up the call stack. By contrast, ns_adp_abort and ns_adp_break will return all the way up the call stack. ns_adp_return is typically used from an ADP included by another ADP, to stop processing of the inner ADP while allowing the calling ADP to continue. The optional result argument, if present, will be used to set the Tcl interpreter result string. EXAMPLE
The following example demonstrates halting execution of the ADP after returning a complete response with one of the ns_return style com- mands: <% if !$authorized { ns_returnunauthorized; # Send complete response. ns_adp_abort; # Execution stops here. } %>. SEE ALSO
ns_adp(n) KEYWORDS
ADP, dynamic pages, exception AOLserver 4.5 ns_adp_exception(3aolserver)
All times are GMT -4. The time now is 02:01 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy