nosuchthingasstars

less info
336 reputation
110
bio website madassemblyprogrammer.blogspo…
location United States
age 20
visits member for 9 months
seen yesterday
stats profile views 24

Current student at the California Institute of Technology, studying astrophysics. Hobbyist programmer in assembly, C/C++, Python, Java, HTML/CSS, Javascript, and just about anything else I can pick up along the way.


Mar
10
accepted Elegant way to set base address of ELF image with Linux binutils?
Mar
10
comment Elegant way to set base address of ELF image with Linux binutils?
@BasileStarynkevitch I don't see another way to do what I need to. I know I need the address 0x400000 free for memory mapping, so I need my executable to load somewhere out of the way.
Mar
10
comment Elegant way to set base address of ELF image with Linux binutils?
@MarcovandeVoort Thanks! It's working somewhat now, though it seems like some of the addresses I try work (like 0x200000 or 0x500000) but not others (like 0x100000); when it doesn't work, the program is killed. Is there some sort of limitation on which addresses I can use (besides kernel-space ones)?
Mar
8
comment Elegant way to set base address of ELF image with Linux binutils?
@MarcovandeVoort A quick Google search has yielded nothing on this for ld or gcc. Can you elaborate or direct me to the right documentation?
Mar
8
asked Elegant way to set base address of ELF image with Linux binutils?
Jan
24
comment C fwrite calculating elapsed Time
From cplusplus.com documentation: "If the given stream was open for writing (or if it was open for updating and the last i/o operation was an output operation) any unwritten data in its output buffer is written to the file." As to what the OS does specifically, I'm honestly not sure.
Jan
24
comment C fwrite calculating elapsed Time
Is it possible that your fwrite call is asynchronous? A quick Google search suggested that it might be, and a call to fflush might be needed to make sure that all your data was actually written before you go to the next function (stopping the timer).
Jan
10
accepted Python throws TypeError on issubclass() when issubclass() is never called
Jan
5
comment Loading ELF shared library and custom binfmt executable into same Linux address space
I wanted to go ahead and accept your answer (it's impressively thorough), but I have a few more questions. I've been working on this project for about a year now and am thoroughly stuck. Loading the PE isn't the problem; I can get it into memory and execute it, so long as it doesn't reference any external libraries. How are you planning to handle that in your implementation?
Jan
5
accepted Loading ELF shared library and custom binfmt executable into same Linux address space
Jan
3
comment Python throws TypeError on issubclass() when issubclass() is never called
@PhilFrost, this is Python 2.7.3, so I guess it has to be warnings.
Jan
2
awarded  Self-Learner
Jan
2
revised Python throws TypeError on issubclass() when issubclass() is never called
deleted 7 characters in body
Jan
2
revised Python throws TypeError on issubclass() when issubclass() is never called
deleted 2 characters in body
Jan
2
answered Python throws TypeError on issubclass() when issubclass() is never called
Jan
2
comment Python throws TypeError on issubclass() when issubclass() is never called
I'll report it. Also, I just found this, which I never thought to look for before. It seems that Numpy has a way of handling RuntimeWarning internally, so I'll see if I can use that instead. Thanks for all your help in solving this!
Jan
2
comment Python throws TypeError on issubclass() when issubclass() is never called
@seberg, I can confirm that, too, in a test script. Any thoughts on how I could still handle a RuntimeWarning? The code is an MCMC, so anything that results in an invalid calculation is supposed to be thrown out (given a -inf likelihood). Also, is there any point in reporting this as a bug, since it's so obscure?
Jan
2
comment Python throws TypeError on issubclass() when issubclass() is never called
@seberg All I've done to mess with warning settings is warnings.simplefilter("error", "RuntimeWarning"), just so I can catch RuntimeWarning when it occurs and handle it intelligently. I'll try the code without it.
Jan
2
comment Python throws TypeError on issubclass() when issubclass() is never called
@seberg, my Numpy version is 1.6.2 and type(sm2) gives me <type 'numpy.float64'>.
Jan
2
comment Python throws TypeError on issubclass() when issubclass() is never called
@PhilFrost, the value of sm2 is 0. That explains why there should be some kind of error, but I would have expected a RuntimeWarning (see my updates above), and I'm already handling that.