diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2016-10-23 17:16:22 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2016-10-23 17:16:22 +0200 |
commit | b728f50a790afeec349c575b99028063a9d230c9 (patch) | |
tree | a54a358aa301b3aa33c53af7100bafabf4b998ff /sys/include | |
parent | 98dba9a4a311dd7b7435a5a5d66619f2a2b4b6cf (diff) |
lib9p: limit the number of srv processes kept arround 8
Diffstat (limited to 'sys/include')
-rw-r--r-- | sys/include/9p.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/include/9p.h b/sys/include/9p.h index 299d4316a..22d64c57f 100644 --- a/sys/include/9p.h +++ b/sys/include/9p.h @@ -236,6 +236,8 @@ struct Srv { Ref sref; /* srvwork procs */ Ref rref; /* requests in flight */ + int spid; /* pid of srv() caller */ + void (*free)(Srv*); }; |