diff options
| author | Mateusz Guzik <mjg@FreeBSD.org> | 2022-08-17 14:20:09 +0000 |
|---|---|---|
| committer | Mateusz Guzik <mjg@FreeBSD.org> | 2022-08-17 14:20:09 +0000 |
| commit | 4c2ef8c1d72b6b822aefdd54c6ea9bc65b5d457e (patch) | |
| tree | 6a9386c70e45e3e2c330ca6b306991eda2cc3408 /sys | |
| parent | f6ffed44a8eb5d1ab89a18e60fb056aab2105be7 (diff) | |
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/sys/pipe.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/pipe.h b/sys/sys/pipe.h index c9f222ffb01a..4580e1e2726d 100644 --- a/sys/sys/pipe.h +++ b/sys/sys/pipe.h @@ -74,8 +74,8 @@ struct pipebuf { * Information to support direct transfers between processes for pipes. */ struct pipemapping { - vm_size_t cnt; /* number of chars in buffer */ - vm_size_t pos; /* current position of transfer */ + u_int cnt; /* number of chars in buffer */ + u_int pos; /* current position of transfer */ int npages; /* number of pages */ vm_page_t ms[PIPENPAGES]; /* pages in source process */ }; |
