aboutsummaryrefslogtreecommitdiff
path: root/lib/libdevinfo/devinfo_var.h
Commit message (Collapse)AuthorAgeFilesLines
* Remove $FreeBSD$: two-line .h patternWarner Losh2023-08-231-2/+0
| | | | | | | Remove /^\s*\*\n \*\s+\$FreeBSD\$$\n/ Similar commit in main: (cherry picked from commit b3e7694832e8)
* spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSDWarner Losh2023-07-251-1/+1
| | | | | | | | | | | The SPDX folks have obsoleted the BSD-2-Clause-FreeBSD identifier. Catch up to that fact and revert to their recommended match of BSD-2-Clause. Discussed with: pfg MFC After: 3 days Sponsored by: Netflix (cherry picked from commit 4d846d260e2b9a3d4d0a701462568268cbfe7a5b)
* Update to device enumeration protocol 2Warner Losh2018-05-311-5/+5
| | | | | | | | | | | The new protocol from the kernel encodes things as a string table, extract it into fields. strdup the strings, and free them when we're done. Differential Revision: https://reviews.freebsd.org/D15629 Notes: svn path=/head/; revision=334415
* lib: further adoption of SPDX licensing ID tags.Pedro F. Giffuni2017-11-261-0/+2
| | | | | | | | | | | | | | | Mainly focus on files that use BSD 2-Clause license, however the tool I was using mis-identified many licenses so this was mostly a manual - error prone - task. The Software Package Data Exchange (SPDX) group provides a specification to make it easier for automated tools to detect and summarize well known opensource licenses. We are gradually adopting the specification, noting that the tags are considered only advisory and do not, in any way, superceed or replace the license texts. Notes: svn path=/head/; revision=326219
* sys/rman.h now requires sys/types.h. Include it to make the API matchWarner Losh2011-02-101-0/+1
| | | | | | | | | | the man page again. Submitted by: Raphael Kubo da Costa MFC after: 2 weeks Notes: svn path=/head/; revision=218505
* Expand length of pnpinfo and length fields since pccard pnpinfo canWarner Losh2003-02-171-2/+2
| | | | | | | easily be longer than 64 characters. Notes: svn path=/head/; revision=111045
* Expose the new kernel data structures to libdevinfo:Warner Losh2002-09-201-3/+8
| | | | | | | | | o Added dd_pnpinfo, dd_location, dd_devflags, dd_flags and dd_state o Copy/initialize these as necessary. o Document the changes to the interface in devinfo.3. Notes: svn path=/head/; revision=103662
* This is the Device Information Library, libdevinfo.Mike Smith2001-04-201-0/+65
The devinfo library provides access to the kernel's internal device hierarchy and to the I/O resource manager. The library uses a sysctl(9) interface to obtain a snapshot of the kernel's state which is then made available to the application. Notes: svn path=/head/; revision=75726