Changeset 90c60f7 in rtems
- Timestamp:
- 08/31/98 15:39:03 (24 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 85734b3
- Parents:
- 82db2d3a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/new_chapters/eventlog.t
r82db2d3a r90c60f7 20 20 21 21 @itemize @bullet 22 @item @code{log_create} - Create a log file 23 @item @code{log_sys_create} - Create a system log file 22 24 @item @code{log_write} - Write to the system Log 23 25 @item @code{log_write_any} - Write to any log file … … 1030 1032 1031 1033 @table @b 1032 @item ENOMEM 1033 The is ???????????? 1034 1035 @end table 1036 1037 @subheading DESCRIPTION: 1038 1039 This function dynamically allocates memory for the @code{ld}, associates 1040 a directory path to the @code{ld}, and provides access permissions to the 1041 @code{ld}. 1034 1035 @item 1036 EEXIST 1037 The @code{path} already exists and O_CREAT and O_EXCL were used. 1038 1039 @item 1040 EISDIR 1041 The @code{path} refers to a directory and the access requested involved 1042 writing. 1043 1044 @item 1045 ETXTBSY 1046 The @code{path} refers to an executable image which is currently being 1047 executed and write access was requested. 1048 1049 @item 1050 EFAULT 1051 The @code{path} points outside your accessible address space. 1052 1053 @item 1054 EACCES 1055 The requested access to the file is not allowed, or one of the 1056 directories in @code{path} did not allow search (execute) permission. 1057 1058 @item 1059 ENAMETOOLONG 1060 The @code{path} was too long. 1061 1062 @item 1063 ENOENT 1064 A directory component in @code{path} does not exist or is a dangling symbolic 1065 link. 1066 1067 @item 1068 ENOTDIR 1069 A component used as a directory in @code{path} is not, in fact, a directory. 1070 1071 @item 1072 EMFILE 1073 The process already has the maximum number of files open. 1074 1075 @item 1076 ENFILE 1077 The limit on the total number of files open on the system has been reached. 1078 1079 @item 1080 ENOMEM 1081 Insufficient kernel memory was available. 1082 1083 @item 1084 EROFS 1085 The @code{path} refers to a file on a read-only filesystem and write access 1086 was requested. 1087 1088 @item 1089 ELOOP 1090 The @code{path} contains a reference to a circular symbolic link, ie a 1091 symbolic link whose expansion contains a reference to itself. 1092 1093 @end table 1094 1095 @subheading DESCRIPTION: 1096 1097 This function attempts to create a file associated with the @code{logdes} 1098 argument in the directory provided by the argument @code{path}. 1042 1099 1043 1100 @subheading NOTES:
Note: See TracChangeset
for help on using the changeset viewer.