Sponsored Content
Full Discussion: static variable storage
Top Forums Programming static variable storage Post 302281430 by naan on Wednesday 28th of January 2009 11:09:23 PM
Old 01-29-2009
static variable storage

Hi,

Where are the static variables actually stored in memory. Is it in .bss? In that case how is its storage different from global variables? From the ELF data is it possible to see the storage of different variables used in the program?

eg:

static int temp1;
int gtemp1;

main() {
static int temp2;
.
.
}

In this code segment, are both temp1 and temp2 stored in .bss?
 

8 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Static variable in shell

Hi All, I want a static variable in shell script. I have a script in which I want to send mail on certain condition and it happens that when that condition is met it start mailing as i have set my cron job to execute every 15 mins. And what i want is to run that script after every 15... (1 Reply)
Discussion started by: Yagami
1 Replies

2. Shell Programming and Scripting

Static variable in shell

Hi All, I want a static variable in shell script. I have a script in which I want to send mail on certain condition and it happens that when that condition is met it start mailing as i have set my cron job to execute every 15 mins. And what i want is to run that script after every 15... (4 Replies)
Discussion started by: Yagami
4 Replies

3. IP Networking

I need HELP to Set up Coyote Linux router with 1 static IP & 64 internal static IP

hello, i need help on setting my coyote linux, i've working on this for last 5 days, can't get it to work. I've been posting this message to coyote forum, and other linux forum, but haven't get any answer yet. Hope someone here can help me...... please see my attached picture first. ... (0 Replies)
Discussion started by: dlwoaud
0 Replies

4. Shell Programming and Scripting

Merge Static and dynamic parts in variable declaration

Dear Unix experts I want to define a variable which contains dynmic and static part, daynamic part is the first field. Sample of data dddd aaaa sssss 12345 ssss 2323 234234 4242 dddd 3223 34234 54353 ssss 24234 3434 42342 dddd rwrw 423423 werwer nawk 'BEGIN {FS=" "}{... (4 Replies)
Discussion started by: yahyaaa
4 Replies

5. Emergency UNIX and Linux Support

Merge Static and dynamic parts in variable declaration

Dear Unix experts Moved from "Shell Programming and Scripting " I want to define a variable which contains dynmic and static part, daynamic part is the first field. Sample of data dddd aaaa sssss 12345 ssss 2323 234234 4242 dddd 3223 34234 54353 ssss 24234 3434 42342 dddd rwrw 423423... (2 Replies)
Discussion started by: yahyaaa
2 Replies

6. Programming

C++ program is crashing on re-assigning const static member variable using an int pointer

Hi, Can any one tell me why my following program is crashing? #include <iostream> using namespace std; class CA { public: const static int i; }; const int CA::i = 10; int main() { int* pi = const_cast<int*>(&CA::i); *pi = 9; cout << CA::i << endl; } (6 Replies)
Discussion started by: royalibrahim
6 Replies

7. Programming

Synchronization Variable Storage

We know that all the threads in process share the process address space. We have various synchronization mechanisms like semaphore, mutex, spinlock, critical sections etc . used for thread syncronization. I want to know in which part of the process address space are these synchronization... (2 Replies)
Discussion started by: rupeshkp728
2 Replies

8. Shell Programming and Scripting

Variable storage using awk

Hi, there is a file which contains some values in column format. I want to store those values in a variable.but when i am using awk it is storing all the values at a time. x=`awk '{print $1}' test2.txt` echo $x ab cd mn jk yt but i want the values to be stored one by one in that variable.... (3 Replies)
Discussion started by: arijitsaha
3 Replies
MYSQLND_QC_SET_USER_HANDLERS(3) 					 1					   MYSQLND_QC_SET_USER_HANDLERS(3)

mysqlnd_qc_set_user_handlers - Sets the callback functions for a user-defined procedural storage handler

SYNOPSIS
bool mysqlnd_qc_set_user_handlers (string $get_hash, string $find_query_in_cache, string $return_to_cache, string $add_query_to_cache_if_not_exists, string $query_is_select, string $update_query_run_time_stats, string $get_stats, string $clear_cache) DESCRIPTION
Sets the callback functions for a user-defined procedural storage handler. PARAMETERS
o $get_hash - Name of the user function implementing the storage handler get_hash functionality. o $find_query_in_cache - Name of the user function implementing the storage handler find_in_cache functionality. o $return_to_cache - Name of the user function implementing the storage handler return_to_cache functionality. o $add_query_to_cache_if_not_exists - Name of the user function implementing the storage handler add_query_to_cache_if_not_exists functionality. o $query_is_select - Name of the user function implementing the storage handler query_is_select functionality. o $update_query_run_time_stats - Name of the user function implementing the storage handler update_query_run_time_stats functionality. o $get_stats - Name of the user function implementing the storage handler get_stats functionality. o $clear_cache - Name of the user function implementing the storage handler clear_cache functionality. RETURN VALUES
Returns TRUE on success or FALSE on FAILURE. SEE ALSO
Procedural user-defined storage handler example. PHP Documentation Group MYSQLND_QC_SET_USER_HANDLERS(3)
All times are GMT -4. The time now is 03:26 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy