cuse.h (ee7b0571c2c18bdec848ed2044223cc88db29bd8) | cuse.h (58a8f6e9ecabba975f2cda8416bcc36c2073a7a8) |
---|---|
1/* $FreeBSD$ */ 2/*- 3 * Copyright (c) 2014 Hans Petter Selasky. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 40 unchanged lines hidden (view full) --- 49 cuse_write_t *cm_write; 50 cuse_ioctl_t *cm_ioctl; 51 cuse_poll_t *cm_poll; 52}; 53 54int cuse_init(void); 55int cuse_uninit(void); 56 | 1/* $FreeBSD$ */ 2/*- 3 * Copyright (c) 2014 Hans Petter Selasky. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 40 unchanged lines hidden (view full) --- 49 cuse_write_t *cm_write; 50 cuse_ioctl_t *cm_ioctl; 51 cuse_poll_t *cm_poll; 52}; 53 54int cuse_init(void); 55int cuse_uninit(void); 56 |
57void *cuse_vmalloc(int); | 57void *cuse_vmalloc(unsigned); |
58int cuse_is_vmalloc_addr(void *); 59void cuse_vmfree(void *); 60unsigned long cuse_vmoffset(void *ptr); 61 62int cuse_alloc_unit_number_by_id(int *, int); 63int cuse_free_unit_number_by_id(int, int); 64int cuse_alloc_unit_number(int *); 65int cuse_free_unit_number(int); --- 32 unchanged lines hidden --- | 58int cuse_is_vmalloc_addr(void *); 59void cuse_vmfree(void *); 60unsigned long cuse_vmoffset(void *ptr); 61 62int cuse_alloc_unit_number_by_id(int *, int); 63int cuse_free_unit_number_by_id(int, int); 64int cuse_alloc_unit_number(int *); 65int cuse_free_unit_number(int); --- 32 unchanged lines hidden --- |