1
0
mirror of https://github.com/adtools/clib2.git synced 2025-12-08 14:59:05 +00:00

- Added disk type definitions to mount_convertinfo.c and unistd_common_pathconf.c,

prompted by Thore Boeckelmann.


git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@15187 87f5fb63-7c3d-0410-a384-fd976d0f7a62
This commit is contained in:
Olaf Barthel
2008-04-16 07:38:10 +00:00
parent 7dcc410d0c
commit 6c50657673
4 changed files with 32 additions and 6 deletions

View File

@ -1,5 +1,5 @@
#
# $Id: GNUmakefile.68k,v 1.105 2008-03-11 07:41:27 damato Exp $
# $Id: GNUmakefile.68k,v 1.106 2008-04-16 07:38:10 obarthel Exp $
#
# :ts=8
#
@ -29,7 +29,7 @@ ifneq ($(HOST), AmigaOS)
RANLIB = m68k-amigaos-ranlib
COPY = cp
DELETE = rm -rf
MAKEDIR = mkdir
MAKEDIR = mkdir -p
endif
##############################################################################

View File

@ -1,5 +1,5 @@
/*
* $Id: amiga_rexxvars.c,v 1.16 2008-04-15 16:22:51 obarthel Exp $
* $Id: amiga_rexxvars.c,v 1.17 2008-04-16 07:38:10 obarthel Exp $
*
* :ts=4
*
@ -661,7 +661,7 @@ SetRexxVar(struct RexxMsg *context,STRPTR variable_name,STRPTR value,LONG length
}
/* Install the value string. */
_SetValue(environment,value_string,symbol_table_node
_SetValue(environment,value_string,symbol_table_node);
error = 0;

View File

@ -1,5 +1,5 @@
/*
* $Id: mount_convertinfo.c,v 1.6 2006-01-08 12:04:24 obarthel Exp $
* $Id: mount_convertinfo.c,v 1.7 2008-04-16 07:38:10 obarthel Exp $
*
* :ts=4
*
@ -42,6 +42,20 @@
/****************************************************************************/
#ifndef ID_BUSY_DISK
#define ID_BUSY_DISK (0x42555359L) /* 'BUSY' */
#endif /* ID_LONGNAME_DOS_DISK */
#ifndef ID_LONGNAME_DOS_DISK
#define ID_LONGNAME_DOS_DISK (0x444F5306L) /* 'DOS\6' */
#endif /* ID_LONGNAME_DOS_DISK */
#ifndef ID_LONGNAME_FFS_DISK
#define ID_LONGNAME_FFS_DISK (0x444F5307L) /* 'DOS\7' */
#endif /* ID_LONGNAME_FFS_DISK */
/****************************************************************************/
void
__convert_info_to_statfs(struct InfoData * id,struct statfs * f)
{

View File

@ -1,5 +1,5 @@
/*
* $Id: unistd_common_pathconf.c,v 1.3 2006-09-21 09:24:20 obarthel Exp $
* $Id: unistd_common_pathconf.c,v 1.4 2008-04-16 07:38:10 obarthel Exp $
*
* :ts=4
*
@ -55,6 +55,18 @@
#define ID_RAWCON (0x52415700L) /* 'RAW\0' */
#endif /* ID_RAWCON */
#ifndef ID_BUSY_DISK
#define ID_BUSY_DISK (0x42555359L) /* 'BUSY' */
#endif /* ID_LONGNAME_DOS_DISK */
#ifndef ID_LONGNAME_DOS_DISK
#define ID_LONGNAME_DOS_DISK (0x444F5306L) /* 'DOS\6' */
#endif /* ID_LONGNAME_DOS_DISK */
#ifndef ID_LONGNAME_FFS_DISK
#define ID_LONGNAME_FFS_DISK (0x444F5307L) /* 'DOS\7' */
#endif /* ID_LONGNAME_FFS_DISK */
/****************************************************************************/
struct fs_info