Kelam_Magnus


 
Thread Tools Search this Thread
Contact Us Post Here to Contact Site Administrators and Moderators Kelam_Magnus
# 8  
Old 07-14-2003
Quote:
Originally posted by Perderabo

By violating rule 8, you trigger rule 12. You didn't know you were violating rule 8? Fair enough. But you know it now. See, you're learning already. Smilie
i really dont mean to go off topic or laf at all but i am seriously wait for the trap door to open and a man to start screeming "ohh im burned very badly .... ohh you just shot me....."
Login or Register to Ask a Question

Previous Thread | Next Thread

1 More Discussions You Might Find Interesting

1. Post Here to Contact Site Administrators and Moderators

For Kelam_Magnus

It is not my intention to cheat the system. yes, you are correct that it is a homework question, on attempting the problem , i read through 6 chapters of my book and put in an entire saturday, 10 hrs trying to figure tthis out and I still got no where. Just like any language i have been through... (2 Replies)
Discussion started by: chekeitout
2 Replies
Login or Register to Ask a Question
DWARF_SET_FRAME_CFA_VALUE(3)				   BSD Library Functions Manual 			      DWARF_SET_FRAME_CFA_VALUE(3)

NAME
dwarf_set_frame_cfa_value, dwarf_set_frame_rule_initial_value, dwarf_set_frame_rule_table_size, dwarf_set_frame_same_value, dwarf_set_frame_undefined_value -- set internal register rule table parameters LIBRARY
DWARF Access Library (libdwarf, -ldwarf) SYNOPSIS
#include <libdwarf.h> Dwarf_Half dwarf_set_frame_cfa_value(Dwarf_Debug dbg, Dwarf_Half value); Dwarf_Half dwarf_set_frame_rule_initial_value(Dwarf_Debug dbg, Dwarf_Half value); Dwarf_Half dwarf_set_frame_rule_table_size(Dwarf_Debug dbg, Dwarf_Half value); Dwarf_Half dwarf_set_frame_same_value(Dwarf_Debug dbg, Dwarf_Half value); Dwarf_Half dwarf_set_frame_undefined_value(Dwarf_Debug dbg, Dwarf_Half value); DESCRIPTION
These functions set the parameters of the internal register rule table. Argument dbg should reference a DWARF debug context allocated using dwarf_init(3). Argument value should hold the parameter value to set. Function dwarf_set_frame_cfa_value() sets the column number for the CFA register rule in the internal register rule table. The constant DW_FRAME_CFA_COL is the default CFA register column number for DWARF2-only interfaces, and the constant DW_FRAME_CFA_COL3 is the default CFA column number for DWARF3-compatible interfaces. Function dwarf_set_frame_rule_initial_value() sets the initial value of the register rules in the internal register rule table. The default initial value is the constant DW_FRAME_REG_INITIAL_VALUE, defined in the header file <libdwarf.h>. Function dwarf_set_frame_rule_table_size() sets the maxmium number of columns of the internal register rule table. Argument value should be at least as large as the number of real registers in the ABI. Function dwarf_set_frame_same_value() sets the register number representing the ``same value'' register rule. The default register number for the ``same value'' rule is the constant DW_FRAME_SAME_VAL, defined in the header file <libdwarf.h>. Function dwarf_set_frame_undefined_value() sets the register number representing the ``undefined'' register rule. The default register num- ber for the ``undefined'' rule is the constant DW_FRAME_UNDEFINED_VAL, defined in the header file <libdwarf.h>. RETURN VALUES
These functions return the previous value of the parameter being set. SEE ALSO
dwarf(3), dwarf_get_fde_at_pc(3), dwarf_get_fde_info_for_all_regs(3), dwarf_get_fde_info_for_all_regs3(3), dwarf_get_fde_info_for_cfa_reg3(3), dwarf_get_fde_info_for_reg(3), dwarf_get_fde_info_for_reg3(3), dwarf_get_fde_n(3) BSD
June 18, 2011 BSD