Mercurial > hg > Members > kono > nitros9-code
view docs/ccguide/mknod.refentry @ 2772:0a3f4d8ea6d5
Found ENDC in wrong location in dwread.asm and dwwrite.asm. Corrected.
Moved the native 6309 code in dwread.asm and dwwrite.asm into the H6309 labeled area and changed IFEQ H6309 to IFNE H6309. Also moved the 57600bps 6809 code to the default location. This change had been done in the old dwread.asm and dwwrite.asm files to make it easier to follow. Though these two files were overwritten from the HDBDOS project dwread.asm and dwwrite.asm files. So this conversion needed to be done again so it made the source easier to follow.
author | drencor-xeen |
---|---|
date | Wed, 23 Jan 2013 12:36:55 -0600 |
parents | 42b2c775f05f |
children |
line wrap: on
line source
<refentry id="mknod"> <refnamediv> <refname>Mknod</refname> <refpurpose>create a directory</refpurpose> </refnamediv> <refsynopsisdiv> <funcsynopsis> <funcsynopsisinfo> #include <modes.h> </funcsynopsisinfo> <funcprototype> <funcdef><function>mknod</function></funcdef> <paramdef>char *<parameter>fname</parameter></paramdef> <paramdef>int <parameter>desc</parameter></paramdef> </funcprototype> </funcsynopsis> </refsynopsisdiv> <refsect1><title>Assembler Equivalent</title> <para> os9 I$MAKDIR </para> </refsect1> <refsect1><title>Description</title> <para> This call may be used to create a new directory. "Fname" should point to a string containing the desired name of the directory. "Desc" is a descriptor specifying the desired mode (file type) and permissions of the new file. </para> <para> The include file defines the possible values for "desc" as follows: </para> <programlisting> #define S_IREAD 0x01 /* owner read */ #define S_IWRITE 0x02 /* owner write */ #define S_IEXEC 0x04 /* owner execute */ #define S_IOREAD 0x08 /* public read */ #define S_IOWRITE 0x10 /* public write */ #define S_IOEXEC 0x20 /* public execute */ #define S_ISHARE 0x40 /* sharable */ </programlisting> </refsect1> <refsect1><title>Diagnostics</title> <para> Zero is returned if the directory has been successfully made; -1 if the file already exists. </para> </refsect1> <refsect1><title>See Also</title> <para> OS-9 command "makdir" </para> </refsect1> </refentry>