summaryrefslogtreecommitdiff
path: root/lib/libdevinfo
Commit message (Collapse)AuthorAgeFilesLines
* mdoc(7): Use the new feature of the .In macro.Ruslan Ermilov2003-09-081-1/+1
| | | | Notes: svn path=/head/; revision=119893
* 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
* english(4) police.Jens Schweikhardt2002-12-271-1/+1
| | | | Notes: svn path=/head/; revision=108317
* Expose the new kernel data structures to libdevinfo:Warner Losh2002-09-204-6/+41
| | | | | | | | | 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
* o Merge <machine/ansi.h> and <machine/types.h> into a new headerMike Barcroft2002-08-211-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | called <machine/_types.h>. o <machine/ansi.h> will continue to live so it can define MD clock macros, which are only MD because of gratuitous differences between architectures. o Change all headers to make use of this. This mainly involves changing: #ifdef _BSD_FOO_T_ typedef _BSD_FOO_T_ foo_t; #undef _BSD_FOO_T_ #endif to: #ifndef _FOO_T_DECLARED typedef __foo_t foo_t; #define _FOO_T_DECLARED #endif Concept by: bde Reviewed by: jake, obrien Notes: svn path=/head/; revision=102227
* MAN[1-9] -> MAN.Ruslan Ermilov2002-05-131-2/+1
| | | | Notes: svn path=/head/; revision=96520
* Made this header self-sufficient.Bruce Evans2001-10-031-6/+9
| | | | | | | Fully parenthesized a macro definition. Notes: svn path=/head/; revision=84399
* mdoc(7) police: Use the new .In macro for #include statements.Ruslan Ermilov2001-10-011-1/+1
| | | | Notes: svn path=/head/; revision=84306
* Implement __FBSDID()Matthew Dillon2001-09-161-2/+3
| | | | Notes: svn path=/head/; revision=83551
* Include string.h for the strlen() prototype to quiet a warning.John Baldwin2001-08-101-0/+1
| | | | Notes: svn path=/head/; revision=81459
* Remove whitespace at EOL.Dima Dorfman2001-07-151-2/+2
| | | | Notes: svn path=/head/; revision=79754
* mdoc(7) police: fix markup.Ruslan Ermilov2001-04-231-31/+31
| | | | Notes: svn path=/head/; revision=75851
* devinfo_var.h should not be in INCSMike Smith2001-04-201-1/+1
| | | | Notes: svn path=/head/; revision=75745
* More typo fixes, .Os -> .FxMike Smith2001-04-201-4/+5
| | | | Notes: svn path=/head/; revision=75744
* typo .Fr -> .FnMike Smith2001-04-201-1/+1
| | | | Notes: svn path=/head/; revision=75743
* Add a manpage for libdevinfo.Mike Smith2001-04-202-1/+238
| | | | Notes: svn path=/head/; revision=75741
* This is the Device Information Library, libdevinfo.Mike Smith2001-04-204-0/+681
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