You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Character device driver should implement Stream interface.
interfaceStreamextendsEventListener{
readableFlowing: boolean;// flowing mode when 'data' event attached?
readableEnded: boolean;readable(): boolean;// true if readable streamread(length: number): Uint8Array|null;// returns null when no data to read// event 'data'// event 'end'
writableEnded: boolean;// end() called
writableFinished: boolean;// end() called and all data flushedwritable(): boolean;// true if writable streamwrite(data: Uint8Array): boolean;// returns true when need 'drain' eventend();// event 'drain'// event 'finish'destroy();}
Registering device drivers
Character Device Driver and Stream
Character device driver should implement
Stream
interface.Process object
Solution for #461
File system
Need support configurations instead of calling method?
Event we support configs, we still need functions like
mount()
,register()
, etc.Do we need to support even this?
The text was updated successfully, but these errors were encountered: