toncho11

Results 198 comments of toncho11

When would we have this version on: https://copy.sh/v86/ :) ?

Thank you for the update! If you have this version web hosted somewhere publicly I could use it / test it to run ELKS with our Microwindows Nano X.

I need a non blocking way of doing it. How can I do that? This is the main question, not simplicity. Once I execute popen it could take 1 minute...

I need to go buy the Christmas tree or my family will kill me. This is my use case in general: ``` #include #include #include #include #include #include "nano-X.h" /*...

So: 1) I need to use in nxselect: ``` printf("%s\n", path); /* buffered */ fflush(stdout); /* REQUIRED */ ``` or `write(1, "/full/path/to/file\n", length);` 2) And select() + fgets() should be...

Thanks. Seems to work for now. The idea was to have atomic writes and reads.

Thank you! Actually I want to be able to exit everything and go to the console, but if I have launched other Nano-X applications (from my own) and if I...

> > a way to close all (my Nano-X, the other Nano-X apps and the Nano-X server) properly and go back to console > > I've added that to my...

There can be a new GrShutdown() Nano-X API function that sends GR_EVENT_TYPE_CLOSE_REQ to all apps. Than these apps will handle GR_EVENT_TYPE_CLOSE_REQ in their main loop. It seems most do. And...

I managed the memory handling. What I am missing currently is the proper close of everything as discussed above, but it is not currently a blocker issue.