tags:

views:

12

answers:

1

My problem is understanding programming on real-time system. I'm confuse about this topic. What can I do and what I can not do in my source code? I know there are attensions to do during source code programming but I don't know exactly what. Some examples. Is possibile using dynamic memory allocation(new)? Is possible access to disk during real-time? What kind of IPC(Interprocess communication) can I use? Can I use standard interprocess locking? And what is with file locking? I have searched on internet but didn't find what I want. Where can I better understand this problems? I hope someone can help me. Sorry for my english!

A: 

You can do whatever your language/compiler of choice supports.

What you should do now, it really depends on what's the target system, what is your program (you could be writing an OS for all I know), etc...

jv42