Tagged Questions

1
vote
2answers
55 views

given N stacks and no dynamic memory

Many programming languages and Operating Systems have means of providing dynamic memory: new, malloc, etc. What-if: a program is restricted by using only stacks, with predefined (i.e. compile-time) ...
1
vote
4answers
277 views

What would a multithreaded UI api look like, and what advantages would it provide?

Or, equivalently, how would you design such an API. Expected/example usage would be illustrative as well. My curiosity comes directly from the comments (and subsequent editting on my part) of this ...