|
From: Vincenzo C. <vin...@ya...> - 2005-10-06 10:34:50
|
Johan Parent wrote: > Can anyone tell me which FUSE >>> based project I should look at as an example of good "FUSE >>> multi-threading". >> > No-one got any pointers or is this stupid question to begin with? :( A > simple weblink would do ;) You don't need anything special for multithreaded fuse w.r.t. fuse itself. For example, fusexmp.c is multithreaded. You will however need to protect with mutexes any shared data structure you use, or use a client-server approach sending commands to one thread which executes them (this is impopular in imperative languages :)). But these problems are not fuse-specific, rather they are concurrency-specific. Bye Vincenzo -- Please note that I do not read the e-mail address used in the from field but I read vincenzo_ml at yahoo dot it Attenzione: non leggo l'indirizzo di posta usato nel campo from, ma leggo vincenzo_ml at yahoo dot it |