0
votes
4answers
41 views

Different sizes for same structure with different ordering in types

//I made these 2 structs struct Book1 { int genre; int year; char* author; }; struct Book2 { int genre; char* author; int year; }; //in my main function ...
10
votes
1answer
129 views

Holding Arrays not in RAM

I am learning (and trying to teach) electronics/programming with some friends. We have decided to build a LED cube using a launchpad for our task. Here's the issue we run into: For our animations, ...
0
votes
1answer
182 views

Gwan kv, persistent flag / Number of items

I have decided to use Gwan's KV store in place of a Redis NoSQL database. I saw in the Manual that the kv supports a persistent flag for file IO to keep data I guess between restarts. It uses the ...
1
vote
4answers
273 views

how to allocate more cpu and RAM to a c program in linux

I am running a simple C program which performs a lot calculations(CFD) hence takes a lot of time to run. However i still have a lot of unused CPU and RAM. So how will i allocate some of my processing ...
2
votes
1answer
79 views

Placing code and variables into a specific RAM section defined in the linker

Thanks for taking a look. When compiling my C project the linker generates a file where I can define the RAM sections I want to have, like this: -ra RAMCHECK=0x00028000/0x000296FF -ra ...
0
votes
3answers
220 views

RAM Checksum in C language

I need to check the RAM of a MCU at startup using a checkerboard-like algorithm. I do not want to lose whatever data is already in RAM, and also i do not know how not to affect the variables im using ...
7
votes
2answers
246 views

When defining a variable in C for example, where is the memory address for that variable stored?

If I define a variable in C (i.e. unsigned short int n = 5), that value is stored somewhere in the user's RAM in binary (in this case it would look something like 0000 0000 0000 0101). The place in ...
0
votes
1answer
98 views

How to determine installed memory on x64 machine using visual studio windows 7

Is there a way to determine the amount of memory installed on a computer running 64bit windows 7, using VS2010 C? The app I am running is a Windows 64bit app, with a UI written in c#, which calls a ...
3
votes
1answer
147 views

C - Running a program in RAM

I have a program that XORs two files together using one time pad encryption. As the keyfile is of such sensitive nature I don't want any traces of the keyfile to appear on the computers hard drive as ...
0
votes
2answers
110 views

Which compilation flag should I use -> Os or O2?

I'm currently working on an embedded device application (in C). What optimization flag should I use for compiling that application keeping in mind that it only has 96 MB of RAM. Also, please note ...
3
votes
2answers
135 views

RAM memory optimization at compilation

I am working on a project it is in C programing language, I'm trying to analyze the RAM memory (segment allocations ) at compilation time for library files on specific feature. That will help me ...
2
votes
1answer
467 views

Why does calloc fail to allocate 1GB on a system with 4GB of RAM?

I have a call to calloc for 1 element of just over 1 gigabyte. This call returns NULL, and checking errno reveals an insufficient memory error. However, during testing I have almost 4 gigabytes of ...
0
votes
2answers
234 views

Clean up RAM (Maybe win32 api)?

Every so often I see "Speed Up Your PC" programs that offer a RAM cleaning feature. They claim to defrag and free up unused memory like a garbage collector or something... not sure. Here are some ...
0
votes
6answers
143 views

C : #include increase the RAM size?

I would like to ask if I include more header files, will it increase the RAM size required? For example, will I need more RAM if I #include <stdio.h> and #include <string.h> ? I am ...
2
votes
2answers
172 views

How can you limit RAM consumption in a process?

How can you limit the physical memory consumption of a C program from within the source code on a linux 2.6.32 machine? I need to determine the type of page replacement algorithm the system is ...
3
votes
3answers
503 views

How would I write to memory?

I am trying to write a simple test for RAM to check basic integrity of the memory on board an embedded device. This is what I want to be able to do: Essentially write out certain patterns: ...
1
vote
2answers
439 views

Determining the number of address lines and RAM word size using C

Can anyone please let me know how to deterimine the number of address lines in a processor using C ? This can't be equal to size of the processor registers since the number of address lines may be ...
1
vote
2answers
291 views

How is data from the RAM fetched?

In C each byte is individually addressable. Suppose an integer (say which uses 4 bytes) has an address 0xaddr (which is 32 bits, assuming that we have a 32 bit processor with 32 bit address bus and 32 ...
0
votes
4answers
618 views

How to setup programmable ram disk without root permissions on linux

I need to setup and configure a ram-disk from within my C application. Is it possible? From what I understand, a ram-disk can be setup, mounted and resized only by the root. My application would not ...
3
votes
1answer
259 views

Read data in executable on run

G'Day! I have an executable (Unix or Windows - it should be cross-compiling). If one opens this executable by any editor and write some stuff to the end - the application would still run perfect. On ...
2
votes
3answers
192 views

Possible to detect bit errors in memory in software?

A friend and I were curious as to whether you could detect levels of ionizing radiation by looking at rates of single bit errors in memory. I did a little research and I guess most errors are caught ...
2
votes
5answers
496 views

Zero RAM using C in Linux

How can I zero unused RAM in Linux for security purposes ? I wrote this simple C program but I do not know if the RAM called by malloc will be reused at the next loop or if new RAM will be used. ...
4
votes
3answers
4k views

How do I execute a function from RAM on a Cortex-M3 (STM32)?

I'm trying to execute a function from RAM on a Cortex-M3 processor (STM32). The function erases the and rewrites the internal flash, so i definitely needs to be in RAM but how do I do that? What I ...
9
votes
5answers
1k views

Reserve RAM in C

I need ideas on how to write a C program that reserve a specified amount of MB RAM until a key [ex. the any key] is pressed on a Linux 2.6 32 bit system. * /.eat_ram.out 200 # If free -m is execute ...