Sponsored Content
Top Forums Programming Local variable in a C function is not getting created in stack when its compiled with GCC Post 302993357 by RudiC on Thursday 9th of March 2017 06:57:50 AM
Old 03-09-2017
Although uncommon, I've seen variables (constants) allocated in the code segment, admittedly some (decent) time ago. And, updating it shouldn't corrupt the code nor crash the boot, provided it's size is respected and no adjacent memory is overwritten. Checksums of the code could fail, but they are done upfront, usually, before an update occurred. Or, do you have an unmet condition with the new value and no error handler for such?
 

10 More Discussions You Might Find Interesting

1. Programming

gcc warnings: implicit declaration of function...

I am having strange warnings from gcc compiler, which I don't think should come while cmpiling. Can anyone help? The warnings are: - warning: implicit declaration of function 'bzero' - warning: implicit declaration of function 'inet_addr' The code is as below: int main(int argc, char... (2 Replies)
Discussion started by: Ahsan
2 Replies

2. Shell Programming and Scripting

Passing a variable name to be created within a function

Is it possible to pass a variable name, as a parameter to a function, so it can be created within this function ? Something like this: func_uppercase abcdefgh var_name where the 1st parameter is the string I want to convert and the 2nd is the desired variable name... $2=`echo "$1" |... (2 Replies)
Discussion started by: 435 Gavea
2 Replies

3. BSD

stack overflow in function psync_status Abort (core dumped)

I am running Open BSD 3.8 (3.5 upgrade) on a Pent Pro. 200, 64 Megs Ram, Nvedia Vanta TNT 16 Megs, Realtech 8139 Nic. When running ifconfig -a I get this error back. I've run searches on google no deal. I can get Stack overflow or psync, but not both. So I would really like to know how to fix it. ... (0 Replies)
Discussion started by: jmcpreach
0 Replies

4. Linux

gcc compiled executable not working across x86_64 linux platforms

Hi I compiled a hello world program on two different 64-bit Linux machines, named quimby and node0331. When I compile on quimby and run on node0331 I get a "Floating exception (core dumped)" error. But if I do it in reverse, things work fine. Here's my compilation on quimby: $ uname -a... (3 Replies)
Discussion started by: same1290
3 Replies

5. UNIX for Dummies Questions & Answers

How to call a local function within Awk

Hi, I have the following statement which parses a string for me and prints it out: l_comp="dc000.runksh.test.ksh| $g_sql/dc0000.runksh_test.sql|new.dat|control.ctl" echo $l_comp | awk -F"|" '{ for ( i = 1; i <= NF; i++) { print $i; } } ' Rather then printing the data, I would like to... (5 Replies)
Discussion started by: CAGIRL
5 Replies

6. Programming

Created a wrapper for a function in a class.

I have a class called Parsing with the following function. I want to create a wrapper for it, so that I call it using GetReal rather than GetFloat. Bit confused on how to do this. class Parsing { private: int Length; // int Ptr; ... (3 Replies)
Discussion started by: kristinu
3 Replies

7. Programming

Using ANSI color codes in gcc compiled program

I have put some yellow color codes and works well. I call the funstion using print_usage(stderr, 0); I would like to know if there is any way, to store the ansi color codes in variables and then call them inside fprintf. Or have a format followed by the strings I want to output. ... (5 Replies)
Discussion started by: kristinu
5 Replies

8. Solaris

Newly Compiled GCC 4.4.4 on Solaris sparc gives problem with -m32/-m64 flags

Hello experts, This issue has kept me busy all day long. It started off with openssl compilation which was giving linking error with following message: /usr/local/bin/ld: target elf32-sparc not found collect2: ld returned 1 exit status I tried every step possible thing that I could think... (2 Replies)
Discussion started by: d_shanke
2 Replies

9. Programming

[MSYS2/GCC-TDM] Compiler not finding headers in /usr/local/include

I hope it's okay to post this here. I'm working on Windows computer but using the Unix-like environment MSYS2 (https://sourceforge.net/projects/msys2). My problem is that I can't get the compiler to find headers located in /usr/local/include. I am trying to compile libpng which wants the header... (1 Reply)
Discussion started by: AntumDeluge
1 Replies

10. Shell Programming and Scripting

How to make nested function local?

Hi, If I declare a function inside another function, it overwrites any previously declared function with the same name. This is NOT what I want. Example: #!/bin/bash _test() { echo test; } _myf() { # I'm using the same name as the other function. _test() { echo local test; }... (8 Replies)
Discussion started by: chebarbudo
8 Replies
libcrash(5)							File Formats Manual						       libcrash(5)

NAME
libcrash - crash dump access library SYNOPSIS
DESCRIPTION
is a library which provides access to system crash dumps. Access to a dump through the library is independent of the format of the crash dump (there are several, described below). It is also independent of the location of the dump, which could be on a raw dump device, in files in a file system, or a mixture of the two. The memory of a running system can also be treated as a "dump" through use of the driver. All accesses to a dump through the library begin with a call to The crash dump descriptor returned from this call is a necessary parameter to all of the other calls. They are: Verifies the integrity of a dump by checking the sizes and checksums of all of the files making up the dump. Returns a pointer to a structure containing information about the dump and the machine and kernel that produced it. Prepares a file in the crash dump for use, by uncompressing it (if needed) and validating its size and checksum. This function is used internally by the library for access to the physical memory image, and can be used by callers for access to the kernel and kernel module files. Gives information about whether a particular physical memory page was valid on the machine that dumped, and if so, whether or not that page's contents were included in the dump. Reads pages from the dump. Sets the node number that is used by and to access memory in the node private memory areas. Prints to standard error an error or warning message corresponding to one of the error or warning codes returned by another library call. Terminates access to the crash dump and frees all space allocated by the library. Each of the above calls has its own manual page, describing its usage more fully. Crash Dump Formats There are four current formats of system crash dumps: (Version 0) This format, used up through HP-UX 10.01, consists of a single file containing the physical memory image, with a 1-to-1 cor- respondence between file offset and memory address. Usually there is an associated file containing the kernel image. (Version 1) This format, used in HP-UX 10.10, 10.20, and 10.30, consists of a directory containing an file, the kernel file, and numerous files, which contain portions of the physical memory image. (Version 2) This format, used in HP-UX 11.00 and later, consists of a directory containing an file, the kernel and all dynamically loaded kernel module files, and numerous files, each of which contain portions of the physical memory image and metadata describing which memory pages were dumped and which were not. (Version 5) This format is used in HP-UX Release 11i Version 1.0 and later. It is very similar in structure to the format in that it consists of a directory containing an file, the kernel and all dynamically loaded kernel module files, and numerous files, each of which contain portions of the physical memory image and metadata describing which memory pages were dumped and which were not. In addition to the primary file, there are auxiliary index files, that contain metadata describing the image files containing the memory pages. This format will be used when the dump devices have compressed memory images. See crash- conf(1M). Other formats, for example tape archival formats, may be added in the future. Cache Caching mechanism is implemented to improve the performance while analyzing format crash dumps. This caching mechanism is used to keep the uncompressed pages so that subsequent requests can be satisfied from the cache. By default, this caching mechanism will be disabled. It can be enabled by setting the environment variable It will create the cached files in the crash dump directory. RETURN VALUE
Most of the calls in return an integer status value. A zero return value indicates success. A positive return value indicates some sort of warning, despite which the requested operation was completed. A negative return value indicates some sort of error, which prevented completion of the requested operation. The values returned by the library are: Success. The expected size or checksum of one or more files in the crash dump was not recorded, so the integrity of the dump cannot be verified. The dump might be corrupt. The checksum of one or more files in the crash dump could not be computed, so it could not be checked against the expected value. The dump might be corrupt. A raw device containing a portion of the crash dump has been swapped on, so the dump is probably corrupt. The size or checksum of one or more files in the crash dump did not match what was expected. The dump is probably corrupt. A read or write request was issued for a memory address that does not exist on the target machine. A write request was issued for a crash dump. Writes are supported only to running systems through the driver. A raw dump device which is supposed to contain part of the dump does not. It may have been overwritten by swap activity or by a more recent dump. A portion of the crash dump still resides on a dump device of the system that dumped, which is not the current system. The specified node number does not exist. A system error occurred. Consult for the specific error. Note that certain values for have specific meanings in the context of the library. They include: A portion of the crash dump could not be uncompressed. The specified pathname for the dump was neither a plain file, nor a directory containing an INDEX file, nor the pseudodriver. Other values of have their traditional meanings. AUTHOR
was developed by HP. SEE ALSO
cr_close(3), cr_info(3), cr_isaddr(3), cr_open(3), cr_perror(3), cr_read(3), cr_set_node(3), cr_uncompress(3), cr_verify(3). libcrash(5)
All times are GMT -4. The time now is 11:46 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy