aboutsummaryrefslogtreecommitdiff
path: root/lib/libcuse
Commit message (Collapse)AuthorAgeFilesLines
* libcuse: make more use of the howmany() macro when available.Pedro F. Giffuni2016-04-261-1/+1
| | | | | | | | We have a howmany() macro in the <sys/param.h> header that is convenient to re-use as it makes things easier to read. Notes: svn path=/head/; revision=298602
* First pass through library packaging.Glen Barber2016-02-041-0/+1
| | | | | | | Sponsored by: The FreeBSD Foundation Notes: svn path=/projects/release-pkg/; revision=295278
* Make CUSE usable with platforms where the size of "unsigned long" isHans Petter Selasky2015-12-221-4/+4
| | | | | | | different from the size of a pointer. Notes: svn path=/head/; revision=292594
* META MODE: Prefer INSTALL=tools/install.sh to lessen the need for xinstall.host.Bryan Drewery2015-11-251-1/+0
| | | | | | | | | | | This both avoids some dependencies on xinstall.host and allows bootstrapping on older releases to work due to lack of at least 'install -l' support. Sponsored by: EMC / Isilon Storage Division Notes: svn path=/head/; revision=291307
* META_MODE: Remove DEP_RELDIR from Makefile.depend files.Bryan Drewery2015-09-251-2/+0
| | | | | | | | | This has not been needed since r284171 in projects/bmake. Sponsored by: EMC / Isilon Storage Division Notes: svn path=/head/; revision=288226
* Add META_MODE support.Simon J. Gerraty2015-06-131-0/+22
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | Off by default, build behaves normally. WITH_META_MODE we get auto objdir creation, the ability to start build from anywhere in the tree. Still need to add real targets under targets/ to build packages. Differential Revision: D2796 Reviewed by: brooks imp Notes: svn path=/head/; revision=284345
| * Merge sync of headSimon J. Gerraty2015-05-271-3/+1
| |\ | |/ |/| | | Notes: svn path=/projects/bmake/; revision=283595
| * Merge from head@274682Simon J. Gerraty2014-11-192-49/+50
| |\ | | | | | | | | | Notes: svn path=/projects/bmake/; revision=274683
| * | Merge head from 7/28Simon J. Gerraty2014-08-191-0/+21
| | | | | | | | | | | | Notes: svn path=/projects/bmake/; revision=270164
* | | Convert libraries to use LIBADDBaptiste Daroussin2014-11-251-3/+1
| |/ |/| | | | | | | | | | | While here reduce a bit overlinking Notes: svn path=/head/; revision=275024
* | Fix compiler locking diagnostic warnings.Hans Petter Selasky2014-10-131-46/+44
| | | | | | | | | | | | | | PR: 194289 Notes: svn path=/head/; revision=273059
* | Add lock annotations to libcuse.Ed Schouten2014-09-011-5/+7
| | | | | | | | | | | | | | | | | | | | | | | | - Add annotations to the lock/unlock function to indicate that the function is allowed to lock and unlock the underlying pthread mutex. - Add __guarded_by() annotations to the global variables. Approved by: hselasky@ Notes: svn path=/head/; revision=270950
* | Add missing DPADD to Makefile.Hans Petter Selasky2014-08-171-0/+1
|/ | | | | | | PR: 192733 Notes: svn path=/head/; revision=270083
* mdoc: remove superfluous paragraph macros.Joel Dahl2014-06-231-2/+0
| | | | Notes: svn path=/head/; revision=267803
* Fix destruction of character devices by passing correct pointer toHans Petter Selasky2014-06-161-1/+1
| | | | | | | | | kernel in IOCTL request. Submitted by: Andrey Zholos <aaz@q-fu.com> Notes: svn path=/head/; revision=267543
* Mdoc cleanup, typo and grammar fixes.Christian Brueffer2014-06-061-157/+154
| | | | Notes: svn path=/head/; revision=267155
* Add missing MLINKs.Christian Brueffer2014-06-061-0/+5
| | | | Notes: svn path=/head/; revision=267154
* Initial import of character device in userspace support for FreeBSD.Hans Petter Selasky2014-05-234-0/+1354
The CUSE library is a wrapper for the devfs kernel functionality which is exposed through /dev/cuse . In order to function the CUSE kernel code must either be enabled in the kernel configuration file or loaded separately as a module. Currently none of the committed items are connected to the default builds, except for installing the needed header files. The CUSE code will be connected to the default world and kernel builds in a follow-up commit. The CUSE module was written by Hans Petter Selasky, somewhat inspired by similar functionality found in FUSE. The CUSE library can be used for many purposes. Currently CUSE is used when running Linux kernel drivers in user-space, which need to create a character device node to communicate with its applications. CUSE has full support for almost all devfs functionality found in the kernel: - kevents - read - write - ioctl - poll - open - close - mmap - private per file handle data Requested by several people. Also see "multimedia/cuse4bsd-kmod" in ports. Notes: svn path=/head/; revision=266581