]> git.proxmox.com Git - mirror_edk2.git/commit
Add device abstraction code for the UEFI Console and UEFI Shell-based file systems.
authordarylm503 <darylm503@6f19259b-4bc3-4df7-8a09-765794883524>
Tue, 28 Jun 2011 02:34:10 +0000 (02:34 +0000)
committerdarylm503 <darylm503@6f19259b-4bc3-4df7-8a09-765794883524>
Tue, 28 Jun 2011 02:34:10 +0000 (02:34 +0000)
commit53e1e5c647b73e45569ed6e8b8a0a5b276aa685e
treeffb715b3aa7f6299b7e370e2b8a3f50b3df903c5
parentb00771f50a1f9d72852de544cff5cbfd951e71ac
Add device abstraction code for the UEFI Console and UEFI Shell-based file systems.
Make argv use narrow characters instead of wide characters.
Add setenv functionality.
Add poll() system call.
Change signal names into macros – required for standards compliance.  The enums were renamed and moved to sys/signal.h and the new macros reference the enums.
Added SIGBREAK, which is required for Python.
Modify stdio functions to fail cleanly when called with a NULL File Pointer argument.
Added <sys/cdefs.h> that just includes <sys/EfiCdefs.h>.  By adding this wrapper, we improve compatibility with *nix files which assume <sys/cdefs> exists.
Add <netdb.h>
Added macros for bcopy(), bcmp() and strsep().
Modify the clock() function so that it does not hang when running under an emulation environment such as NT32.
Move TM structure specific macros from the private tzfile.h into <time.h>
Add strncasecmp function.
Add strptime function.
Add gettimeofday function.
Add getcwd function.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11908 6f19259b-4bc3-4df7-8a09-765794883524
98 files changed:
StdLib/Include/netdb.h [new file with mode: 0644]
StdLib/Include/netinet6/in6.h
StdLib/Include/paths.h
StdLib/Include/signal.h
StdLib/Include/stdio.h
StdLib/Include/stdlib.h
StdLib/Include/string.h
StdLib/Include/sys/EfiSysCall.h
StdLib/Include/sys/ansi.h
StdLib/Include/sys/cdefs.h [new file with mode: 0644]
StdLib/Include/sys/cdefs_aout.h
StdLib/Include/sys/dirent.h
StdLib/Include/sys/fcntl.h
StdLib/Include/sys/ioctl.h [new file with mode: 0644]
StdLib/Include/sys/poll.h [new file with mode: 0644]
StdLib/Include/sys/signal.h
StdLib/Include/sys/socket.h
StdLib/Include/sys/stat.h
StdLib/Include/sys/syslimits.h
StdLib/Include/sys/time.h
StdLib/Include/sys/types.h
StdLib/Include/sys/uio.h
StdLib/Include/sys/unistd.h [new file with mode: 0644]
StdLib/Include/time.h
StdLib/Include/unistd.h [new file with mode: 0644]
StdLib/Include/wchar.h
StdLib/Include/wctype.h
StdLib/LibC/CRT/Gcc.c
StdLib/LibC/LibC.inf
StdLib/LibC/Main/Main.c
StdLib/LibC/StdLib/Environs.c
StdLib/LibC/Stdio/Stdio.inf
StdLib/LibC/Stdio/clrerr.c
StdLib/LibC/Stdio/fclose.c
StdLib/LibC/Stdio/feof.c
StdLib/LibC/Stdio/ferror.c
StdLib/LibC/Stdio/fflush.c
StdLib/LibC/Stdio/fgetc.c
StdLib/LibC/Stdio/fgetpos.c
StdLib/LibC/Stdio/fgets.c
StdLib/LibC/Stdio/fgetstr.c
StdLib/LibC/Stdio/fgetwc.c
StdLib/LibC/Stdio/fgetws.c
StdLib/LibC/Stdio/fileno.c
StdLib/LibC/Stdio/fparseln.c
StdLib/LibC/Stdio/fprintf.c
StdLib/LibC/Stdio/fpurge.c
StdLib/LibC/Stdio/fputc.c
StdLib/LibC/Stdio/fputs.c
StdLib/LibC/Stdio/fputwc.c
StdLib/LibC/Stdio/fputws.c
StdLib/LibC/Stdio/fread.c
StdLib/LibC/Stdio/freopen.c
StdLib/LibC/Stdio/fseeko.c
StdLib/LibC/Stdio/fvwrite.c
StdLib/LibC/Stdio/fwide.c
StdLib/LibC/Stdio/fwrite.c
StdLib/LibC/Stdio/getc.c
StdLib/LibC/Stdio/makebuf.c
StdLib/LibC/Stdio/putc.c
StdLib/LibC/Stdio/refill.c
StdLib/LibC/Stdio/rewind.c
StdLib/LibC/Stdio/rget.c
StdLib/LibC/Stdio/setvbuf.c
StdLib/LibC/Stdio/stdio.c
StdLib/LibC/Stdio/tmpfile.c
StdLib/LibC/Stdio/ungetc.c
StdLib/LibC/Stdio/vfscanf.c
StdLib/LibC/Stdio/vfwprintf.c
StdLib/LibC/Stdio/vsnprintf.c
StdLib/LibC/Stdio/wbuf.c
StdLib/LibC/Stdio/wsetup.c
StdLib/LibC/String/Copying.c
StdLib/LibC/String/String.inf
StdLib/LibC/String/strncasecmp.c [new file with mode: 0644]
StdLib/LibC/Time/Time.c
StdLib/LibC/Time/Time.inf
StdLib/LibC/Time/gettimeofday.c [new file with mode: 0644]
StdLib/LibC/Time/strftime.c
StdLib/LibC/Time/strptime.c [new file with mode: 0644]
StdLib/LibC/Time/tzfile.h
StdLib/LibC/Uefi/Console.c [deleted file]
StdLib/LibC/Uefi/Devices/Console/daConsole.c [new file with mode: 0644]
StdLib/LibC/Uefi/Devices/UefiShell/daShell.c [new file with mode: 0644]
StdLib/LibC/Uefi/Devices/Utility/DevGenisis.c [new file with mode: 0644]
StdLib/LibC/Uefi/Devices/Utility/DevSearch.c [new file with mode: 0644]
StdLib/LibC/Uefi/Devices/Utility/Path.c [new file with mode: 0644]
StdLib/LibC/Uefi/Devices/daConsole.inf [new file with mode: 0644]
StdLib/LibC/Uefi/Devices/daShell.inf [new file with mode: 0644]
StdLib/LibC/Uefi/Devices/daUtility.inf [new file with mode: 0644]
StdLib/LibC/Uefi/SysCalls.c
StdLib/LibC/Uefi/SysEfi.h [deleted file]
StdLib/LibC/Uefi/Uefi.inf
StdLib/LibC/Uefi/Xform.c
StdLib/LibC/Wchar/ConsDecons.c
StdLib/LibC/Wchar/Searching.c
StdLib/LibC/Wchar/Wchar.inf
StdLib/StdLib.dsc