search for: a_address

Displaying 3 results from an estimated 3 matches for "a_address".

Did you mean: __address
2020 Apr 16
2
[RFC] [Windows SEH][-EHa] Support Hardware Exception Handling
...e code is generated here, we need to compute the address of “a”, and store it somewhere, so we can then do a store. (Well, we’ll assume it does, for the purpose of describing this example.) So the compiler could generate something like the following sequence of operations: Before the try block: a_address = &a; In the try block: a_val = 10; *a_address = a_val; a_address += 4; a_val = 20; *a_address = a_val trigger exception In the except block: a_val = 30; *a_address = a_val; (This is sort of pseudo-assembly using C syntax, so I don’t dive too deeply into target details; hopefully the intent...
2009 Nov 19
2
can icecast server be a source for another icecast?
Hi, I've strange situation: I need to connect to icecast server (A) as a source from another icecast server (B) and preserve metadata (artist and title). Of course I can do something like: curl -s http://A_address/radio.mp3 | ices -v -c B_configuration.xml but in this way all metadata are lost. Is it possible to do this without hacking the code? Best regards paluh
2020 Apr 16
2
[RFC] [Windows SEH][-EHa] Support Hardware Exception Handling
Hi, Eli, Why are you under the impression that threw_exception() will not be called if optimizations are enabled? I don’t know if the -EHa Spec is clearly described in MSFT Webs. At least this proposal has described the rules for both C & C++ code. The very first rule clearly said that “no exception can move in or out of _try region., i.e., no potential faulty instruction can be moved