![]() |
![]()
| ![]() |
![]()
NAMEUnix::Mknod - Perl extension for mknod, major, minor, and makedev SYNOPSISuse Unix::Mknod qw(:all); use File::stat; use Fcntl qw(:mode); $st=stat('/dev/null'); $major=major($st->rdev); $minor=minor($st->rdev); mknod('/tmp/special', S_IFCHR|0600, makedev($major,$minor+1)); DESCRIPTIONThis module allows access to the device routines major()/minor()/makedev() that may or may not be macros in .h files. It also allows access to the mknod(2) system call. FUNCTIONS
NOTESThere are 2 other perl modules that implement the mknod(2) system call, but they have problems working on some platforms. "Sys::Mknod" does not work on AIX because it uses the syscall(2) generic system call which AIX does not have. "Mknod" implements S_IFIFO, which on most platforms is not implemented in mknod(1), but rather mkfifo(1) (which is implemented in POSIX perl module). The perl module "File::Stat::Bits" also implements major() and minor() (and a version of makedev() called dev_join). They are done as a program to get the bit masks at compile time, but if major() and minor() are implemented as sub routines, the arugment could be something as simple as an index to a lookup table (and thereby having no decernable relation to its result). BUGSRunning "make test" as non root will not truly test the functions, as in most UNIX like OSes, mknod(2) needs to be invoked by a privelaged user, usually root. SEE ALSO$ERRNO or $! for the specific error message. File::Stat::Bits, Mknod, POSIX, Sys::Mknod major(9), minor(9), mkfifo(1), mknod(8) AUTHORJim Pirzyk, <pirzyk@freebsd.org> COPYRIGHT AND LICENSECopyright (c) 2005-2023 University of Illinois Board of Trustees All rights reserved. Developed by: Campus Information Technologies and Educational
Services,
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ``Software''), to deal with the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: * Redistributions of source code must retain the above copyright
* Redistributions in binary form must reproduce the above
copyright
* Neither the names of Campus Information Technologies and
Educational
THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE SOFTWARE.
|