usrDosDisk.c
资源名称:ixp425BSP.rar [点击查看]
上传用户:luoyougen
上传日期:2008-05-12
资源大小:23136k
文件大小:1k
源码类别:
VxWorks
开发平台:
C/C++
- /* usrDosDisk.c - DOS disk configuration file */
- /* Copyright 1984-1998 Wind River Systems, Inc. */
- /*
- modification history
- --------------------
- 01a,02jun98,ms written
- */
- /*
- DESCRIPTION
- User configurable DOS disk intialization used by VxSim.
- */
- /******************************************************************************
- *
- * usrDosDiskInit - initialize the DOS pass-through FS.
- */
- STATUS usrDosDiskInit (void)
- {
- char unixName [80];
- extern void unixDrv ();
- extern void unixDiskInit ();
- extern char *u_progname; /* home of executable */
- char *pLastSlash;
- unixDrv ();
- pLastSlash = strrchr (u_progname, '/');
- pLastSlash = (pLastSlash == NULL) ? u_progname : (pLastSlash + 1);
- sprintf (unixName, "/tmp/%s%d.dos", pLastSlash, sysProcNumGet());
- unixDiskInit (unixName, "A:", 0);
- return (OK);
- }