From mboxrd@z Thu Jan 1 00:00:00 1970 To: 9fans@cse.psu.edu Subject: Re: [9fans] GUI toolkit for Plan 9 From: okamoto@granite.cias.osakafu-u.ac.jp MIME-Version: 1.0 Mime-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Message-Id: <20020225013027.E53AE199B3@mail.cse.psu.edu> Date: Mon, 25 Feb 2002 10:30:58 +0900 Topicbox-Message-UUID: 54a58fd0-eaca-11e9-9e20-41e7f4b1d025 >1) I am wondering if anyone is developing, > or planning, a GUI toolkit for Plan 9? As Charles pointed out, we have control(2) for that where we are working for our application. According to my understanding, we need some more exercise how we can implement GUI programs for Plan 9. Plan 9 has different strategy from those of X applications. Plan 9 uses concurrent programming and threads(coroutines) for it. We are now just trying to use its single threaded application, which means we have only four processes for an application, and one of which consists of many kinds of threads (= coroutines). So far as our program, we have no problem in this strategy. However, some much larger program may require multi-threaded strategy, which is the point I described above. (for out program, I believe we can make it public in March, we need some more debugging now, and Yoshitatsu has to write thesis. ^_^) Kenji