├── README.md ├── SendImg ├── ReadMe.txt ├── client │ ├── CMakeLists.txt │ ├── build │ │ └── ... │ ├── includ │ │ ├── CMakeLists.txt │ │ ├── Client.c │ │ ├── Client.h │ │ ├── Public.c │ │ └── Public.h │ └── src │ │ ├── CMakeLists.txt │ │ └── Main_Client.c └── server │ ├── CMakeLists.txt │ ├── build │ └── ... │ ├── includ │ ├── CMakeLists.txt │ ├── Public.c │ ├── Public.h │ ├── Server.c │ └── Server.h │ └── src │ ├── CMakeLists.txt │ └── Main_Server.c ├── a ├── c++ ├── FreeNOS-master │ ├── .gitignore │ ├── LICENSE │ ├── README │ ├── SConstruct │ ├── VERSION │ ├── bin │ │ ├── SConscript │ │ ├── bench │ │ │ ├── Main.cpp │ │ │ └── SConscript │ │ ├── cat │ │ │ ├── Main.cpp │ │ │ └── SConscript │ │ ├── echo │ │ │ ├── Main.cpp │ │ │ └── SConscript │ │ ├── hostname │ │ │ ├── Main.cpp │ │ │ └── SConscript │ │ ├── img │ │ │ ├── BootEntry.h │ │ │ ├── Main.cpp │ │ │ └── SConscript │ │ ├── init │ │ │ ├── Main.cpp │ │ │ └── SConscript │ │ ├── ipctest │ │ │ ├── Main.cpp │ │ │ └── SConscript │ │ ├── login │ │ │ ├── Main.cpp │ │ │ └── SConscript │ │ ├── ls │ │ │ ├── Main.cpp │ │ │ └── SConscript │ │ ├── mknod │ │ │ ├── Main.cpp │ │ │ └── SConscript │ │ ├── mount │ │ │ ├── Main.cpp │ │ │ └── SConscript │ │ ├── mpiping │ │ │ ├── Main.cpp │ │ │ └── SConscript │ │ ├── mpiprime │ │ │ ├── Main.cpp │ │ │ └── SConscript │ │ ├── netcat │ │ │ ├── Main.cpp │ │ │ ├── NetCat.cpp │ │ │ ├── NetCat.h │ │ │ └── SConscript │ │ ├── netctl │ │ │ ├── Main.cpp │ │ │ ├── NetCtl.cpp │ │ │ ├── NetCtl.h │ │ │ └── SConscript │ │ ├── netping │ │ │ ├── Main.cpp │ │ │ ├── NetPing.cpp │ │ │ ├── NetPing.h │ │ │ └── SConscript │ │ ├── netrecv │ │ │ ├── Main.cpp │ │ │ ├── NetReceive.cpp │ │ │ ├── NetReceive.h │ │ │ └── SConscript │ │ ├── netsend │ │ │ ├── Main.cpp │ │ │ ├── NetSend.cpp │ │ │ ├── NetSend.h │ │ │ └── SConscript │ │ ├── prime │ │ │ ├── Main.cpp │ │ │ └── SConscript │ │ ├── ps │ │ │ ├── Main.cpp │ │ │ └── SConscript │ │ ├── reboot │ │ │ ├── Main.cpp │ │ │ └── SConscript │ │ ├── rm │ │ │ ├── Main.cpp │ │ │ └── SConscript │ │ ├── sh │ │ │ ├── ChangeDirCommand.cpp │ │ │ ├── ChangeDirCommand.h │ │ │ ├── ExitCommand.cpp │ │ │ ├── ExitCommand.h │ │ │ ├── HelpCommand.cpp │ │ │ ├── HelpCommand.h │ │ │ ├── Main.cpp │ │ │ ├── SConscript │ │ │ ├── Shell.cpp │ │ │ ├── Shell.h │ │ │ ├── ShellCommand.cpp │ │ │ ├── ShellCommand.h │ │ │ ├── StdioCommand.cpp │ │ │ ├── StdioCommand.h │ │ │ ├── TimeCommand.cpp │ │ │ ├── TimeCommand.h │ │ │ ├── WriteCommand.cpp │ │ │ └── WriteCommand.h │ │ ├── shutdown │ │ │ ├── Main.cpp │ │ │ └── SConscript │ │ ├── stat │ │ │ ├── Main.cpp │ │ │ └── SConscript │ │ ├── sysinfo │ │ │ ├── Main.cpp │ │ │ └── SConscript │ │ ├── touch │ │ │ ├── Main.cpp │ │ │ └── SConscript │ │ └── uname │ │ │ ├── Main.cpp │ │ │ └── SConscript │ ├── config │ │ ├── arm │ │ │ ├── raspberry │ │ │ │ ├── System.h │ │ │ │ ├── boot.imgdesc │ │ │ │ ├── build.conf │ │ │ │ ├── gcc.conf │ │ │ │ ├── init.sh │ │ │ │ ├── kernel.ld │ │ │ │ └── user.ld │ │ │ └── raspberry2 │ │ │ │ ├── System.h │ │ │ │ ├── boot.imgdesc │ │ │ │ ├── build.conf │ │ │ │ ├── gcc.conf │ │ │ │ ├── init.sh │ │ │ │ ├── kernel.ld │ │ │ │ └── user.ld │ │ ├── host │ │ │ ├── build.conf │ │ │ └── gcc.conf │ │ └── intel │ │ │ └── pc │ │ │ ├── System.h │ │ │ ├── boot.imgdesc │ │ │ ├── build.conf │ │ │ ├── clang.conf │ │ │ ├── gcc.conf │ │ │ ├── grub.cfg │ │ │ ├── init.sh │ │ │ ├── kernel.ld │ │ │ ├── menu.lst │ │ │ └── user.ld │ ├── kernel │ │ ├── API.cpp │ │ ├── API.h │ │ ├── API │ │ │ ├── IOCtl.cpp │ │ │ ├── IOCtl.h │ │ │ ├── PrivExec.cpp │ │ │ ├── PrivExec.h │ │ │ ├── ProcessCtl.cpp │ │ │ ├── ProcessCtl.h │ │ │ ├── ProcessID.h │ │ │ ├── SystemInfo.cpp │ │ │ ├── SystemInfo.h │ │ │ ├── VMCopy.cpp │ │ │ ├── VMCopy.h │ │ │ ├── VMCtl.cpp │ │ │ ├── VMCtl.h │ │ │ ├── VMShare.cpp │ │ │ └── VMShare.h │ │ ├── FreeNOS │ │ ├── Kernel.cpp │ │ ├── Kernel.h │ │ ├── Process.cpp │ │ ├── Process.h │ │ ├── ProcessEvent.h │ │ ├── ProcessManager.cpp │ │ ├── ProcessManager.h │ │ ├── ProcessShares.cpp │ │ ├── ProcessShares.h │ │ ├── Scheduler.cpp │ │ ├── Scheduler.h │ │ ├── Support.cpp │ │ ├── Support.h │ │ ├── arm │ │ │ ├── ARMKernel.cpp │ │ │ ├── ARMKernel.h │ │ │ ├── ARMProcess.cpp │ │ │ ├── ARMProcess.h │ │ │ ├── raspberry │ │ │ │ ├── Main.cpp │ │ │ │ ├── RaspiBoot.S │ │ │ │ ├── RaspiSerial.cpp │ │ │ │ ├── RaspiSerial.h │ │ │ │ └── SConscript │ │ │ └── raspberry2 │ │ └── intel │ │ │ ├── IntelKernel.cpp │ │ │ ├── IntelKernel.h │ │ │ ├── IntelProcess.cpp │ │ │ ├── IntelProcess.h │ │ │ ├── IntelSerial.cpp │ │ │ ├── IntelSerial.h │ │ │ └── pc │ │ │ ├── Main.cpp │ │ │ ├── SConscript │ │ │ └── stage2_eltorito │ ├── lib │ │ ├── SConscript │ │ ├── liballoc │ │ │ ├── Allocator.cpp │ │ │ ├── Allocator.h │ │ │ ├── BitAllocator.cpp │ │ │ ├── BitAllocator.h │ │ │ ├── BubbleAllocator.cpp │ │ │ ├── BubbleAllocator.h │ │ │ ├── PageAllocator.cpp │ │ │ ├── PageAllocator.h │ │ │ ├── PoolAllocator.cpp │ │ │ ├── PoolAllocator.h │ │ │ ├── SConscript │ │ │ ├── SplitAllocator.cpp │ │ │ └── SplitAllocator.h │ │ ├── libarch │ │ │ ├── BootImage.h │ │ │ ├── Cache.cpp │ │ │ ├── Cache.h │ │ │ ├── Core.h │ │ │ ├── CoreInfo.cpp │ │ │ ├── CoreInfo.h │ │ │ ├── CoreManager.cpp │ │ │ ├── CoreManager.h │ │ │ ├── IO.cpp │ │ │ ├── IO.h │ │ │ ├── IntController.cpp │ │ │ ├── IntController.h │ │ │ ├── KernelLog.cpp │ │ │ ├── KernelLog.h │ │ │ ├── Memory.h │ │ │ ├── MemoryContext.cpp │ │ │ ├── MemoryContext.h │ │ │ ├── MemoryMap.cpp │ │ │ ├── MemoryMap.h │ │ │ ├── SConscript │ │ │ ├── Timer.cpp │ │ │ ├── Timer.h │ │ │ ├── arm │ │ │ │ ├── ARMCacheV6.cpp │ │ │ │ ├── ARMCacheV6.h │ │ │ │ ├── ARMCacheV7.cpp │ │ │ │ ├── ARMCacheV7.h │ │ │ │ ├── ARMConstant.h │ │ │ │ ├── ARMControl.cpp │ │ │ │ ├── ARMControl.h │ │ │ │ ├── ARMCore.cpp │ │ │ │ ├── ARMCore.h │ │ │ │ ├── ARMFirstTable.cpp │ │ │ │ ├── ARMFirstTable.h │ │ │ │ ├── ARMIO.cpp │ │ │ │ ├── ARMIO.h │ │ │ │ ├── ARMInterrupt.cpp │ │ │ │ ├── ARMInterrupt.h │ │ │ │ ├── ARMInterruptTable.S │ │ │ │ ├── ARMMap.cpp │ │ │ │ ├── ARMMap.h │ │ │ │ ├── ARMPaging.cpp │ │ │ │ ├── ARMPaging.h │ │ │ │ ├── ARMSecondTable.cpp │ │ │ │ ├── ARMSecondTable.h │ │ │ │ ├── ARMState.S │ │ │ │ ├── ARMState.h │ │ │ │ ├── ARMTags.cpp │ │ │ │ ├── ARMTags.h │ │ │ │ └── broadcom │ │ │ │ │ ├── BroadcomGPIO.cpp │ │ │ │ │ ├── BroadcomGPIO.h │ │ │ │ │ ├── BroadcomInterrupt.cpp │ │ │ │ │ ├── BroadcomInterrupt.h │ │ │ │ │ ├── BroadcomMailbox.cpp │ │ │ │ │ ├── BroadcomMailbox.h │ │ │ │ │ ├── BroadcomPower.cpp │ │ │ │ │ ├── BroadcomPower.h │ │ │ │ │ ├── BroadcomTimer.cpp │ │ │ │ │ └── BroadcomTimer.h │ │ │ └── intel │ │ │ │ ├── IntelACPI.cpp │ │ │ │ ├── IntelACPI.h │ │ │ │ ├── IntelAPIC.cpp │ │ │ │ ├── IntelAPIC.h │ │ │ │ ├── IntelBoot.cpp │ │ │ │ ├── IntelBoot.h │ │ │ │ ├── IntelBoot16.S │ │ │ │ ├── IntelBoot32.S │ │ │ │ ├── IntelCache.cpp │ │ │ │ ├── IntelCache.h │ │ │ │ ├── IntelConstant.h │ │ │ │ ├── IntelCore.cpp │ │ │ │ ├── IntelCore.h │ │ │ │ ├── IntelIO.h │ │ │ │ ├── IntelMP.cpp │ │ │ │ ├── IntelMP.h │ │ │ │ ├── IntelMap.cpp │ │ │ │ ├── IntelMap.h │ │ │ │ ├── IntelMultiBoot.S │ │ │ │ ├── IntelPIC.cpp │ │ │ │ ├── IntelPIC.h │ │ │ │ ├── IntelPIT.cpp │ │ │ │ ├── IntelPIT.h │ │ │ │ ├── IntelPageDirectory.cpp │ │ │ │ ├── IntelPageDirectory.h │ │ │ │ ├── IntelPageTable.cpp │ │ │ │ ├── IntelPageTable.h │ │ │ │ ├── IntelPaging.cpp │ │ │ │ ├── IntelPaging.h │ │ │ │ ├── IntelState.S │ │ │ │ └── IntelState.h │ │ ├── libexec │ │ │ ├── ELF.cpp │ │ │ ├── ELF.h │ │ │ ├── ELFHeader.h │ │ │ ├── ExecutableFormat.cpp │ │ │ ├── ExecutableFormat.h │ │ │ └── SConscript │ │ ├── libfs │ │ │ ├── BootImageStorage.h │ │ │ ├── Device.cpp │ │ │ ├── Device.h │ │ │ ├── DeviceServer.cpp │ │ │ ├── DeviceServer.h │ │ │ ├── Directory.cpp │ │ │ ├── Directory.h │ │ │ ├── File.cpp │ │ │ ├── File.h │ │ │ ├── FileCache.h │ │ │ ├── FileMode.h │ │ │ ├── FileStat.h │ │ │ ├── FileStorage.h │ │ │ ├── FileSystem.cpp │ │ │ ├── FileSystem.h │ │ │ ├── FileSystemMessage.h │ │ │ ├── FileSystemPath.h │ │ │ ├── FileSystemRequest.cpp │ │ │ ├── FileSystemRequest.h │ │ │ ├── FileType.h │ │ │ ├── IOBuffer.cpp │ │ │ ├── IOBuffer.h │ │ │ ├── PseudoFile.cpp │ │ │ ├── PseudoFile.h │ │ │ ├── SConscript │ │ │ └── Storage.h │ │ ├── libi2c │ │ │ ├── BroadcomI2C.cpp │ │ │ ├── BroadcomI2C.h │ │ │ ├── I2C.cpp │ │ │ ├── I2C.h │ │ │ └── SConscript │ │ ├── libipc │ │ │ ├── Channel.cpp │ │ │ ├── Channel.h │ │ │ ├── ChannelClient.cpp │ │ │ ├── ChannelClient.h │ │ │ ├── ChannelMessage.h │ │ │ ├── ChannelRegistry.cpp │ │ │ ├── ChannelRegistry.h │ │ │ ├── ChannelServer.h │ │ │ ├── EventNotifier.h │ │ │ ├── IntNotifier.h │ │ │ ├── MemoryChannel.cpp │ │ │ ├── MemoryChannel.h │ │ │ └── SConscript │ │ ├── libmpi │ │ │ ├── MPI.cpp │ │ │ ├── MPIMessage.h │ │ │ ├── MPI_Comm.cpp │ │ │ ├── MPI_Recv.cpp │ │ │ ├── MPI_Send.cpp │ │ │ ├── SConscript │ │ │ └── mpi.h │ │ ├── libnet │ │ │ ├── ARP.cpp │ │ │ ├── ARP.h │ │ │ ├── ARPSocket.cpp │ │ │ ├── ARPSocket.h │ │ │ ├── Ethernet.cpp │ │ │ ├── Ethernet.h │ │ │ ├── EthernetAddress.cpp │ │ │ ├── EthernetAddress.h │ │ │ ├── ICMP.cpp │ │ │ ├── ICMP.h │ │ │ ├── ICMPFactory.cpp │ │ │ ├── ICMPFactory.h │ │ │ ├── ICMPSocket.cpp │ │ │ ├── ICMPSocket.h │ │ │ ├── IPV4.cpp │ │ │ ├── IPV4.h │ │ │ ├── IPV4Address.cpp │ │ │ ├── IPV4Address.h │ │ │ ├── NetworkClient.cpp │ │ │ ├── NetworkClient.h │ │ │ ├── NetworkDevice.cpp │ │ │ ├── NetworkDevice.h │ │ │ ├── NetworkProtocol.cpp │ │ │ ├── NetworkProtocol.h │ │ │ ├── NetworkQueue.cpp │ │ │ ├── NetworkQueue.h │ │ │ ├── NetworkServer.cpp │ │ │ ├── NetworkServer.h │ │ │ ├── NetworkSocket.cpp │ │ │ ├── NetworkSocket.h │ │ │ ├── SConscript │ │ │ ├── UDP.cpp │ │ │ ├── UDP.h │ │ │ ├── UDPFactory.cpp │ │ │ ├── UDPFactory.h │ │ │ ├── UDPSocket.cpp │ │ │ └── UDPSocket.h │ │ ├── libposix │ │ │ ├── Assert.cpp │ │ │ ├── FileDescriptor.h │ │ │ ├── FileSystemMount.h │ │ │ ├── POSIXApplication.cpp │ │ │ ├── POSIXApplication.h │ │ │ ├── Runtime.cpp │ │ │ ├── Runtime.h │ │ │ ├── SConscript │ │ │ ├── StdioLog.cpp │ │ │ ├── StdioLog.h │ │ │ ├── assert.h │ │ │ ├── ctype.h │ │ │ ├── dirent.h │ │ │ ├── dirent │ │ │ │ ├── closedir.cpp │ │ │ │ ├── opendir.cpp │ │ │ │ └── readdir.cpp │ │ │ ├── errno.c │ │ │ ├── errno.h │ │ │ ├── fcntl.h │ │ │ ├── fcntl │ │ │ │ └── open.cpp │ │ │ ├── libgen.h │ │ │ ├── libgen │ │ │ │ ├── basename.cpp │ │ │ │ └── dirname.cpp │ │ │ ├── limits.h │ │ │ ├── math.h │ │ │ ├── math │ │ │ │ ├── abs.cpp │ │ │ │ └── sqrt.cpp │ │ │ ├── stdarg.h │ │ │ ├── stdio.h │ │ │ ├── stdio │ │ │ │ ├── fclose.cpp │ │ │ │ ├── fopen.cpp │ │ │ │ ├── fread.cpp │ │ │ │ ├── printf.cpp │ │ │ │ ├── snprintf.cpp │ │ │ │ ├── vprintf.cpp │ │ │ │ └── vsnprintf.cpp │ │ │ ├── stdlib.h │ │ │ ├── stdlib │ │ │ │ ├── atoi.cpp │ │ │ │ ├── exit.cpp │ │ │ │ ├── free.cpp │ │ │ │ ├── itoa.cpp │ │ │ │ ├── malloc.cpp │ │ │ │ ├── random.cpp │ │ │ │ └── strtol.cpp │ │ │ ├── string.h │ │ │ ├── string │ │ │ │ ├── memcpy.cpp │ │ │ │ ├── memset.cpp │ │ │ │ ├── strcasecmp.cpp │ │ │ │ ├── strcat.cpp │ │ │ │ ├── strchr.cpp │ │ │ │ ├── strcmp.cpp │ │ │ │ ├── strcpy.cpp │ │ │ │ ├── strdup.cpp │ │ │ │ ├── strerror.cpp │ │ │ │ ├── strlcpy.cpp │ │ │ │ ├── strlen.cpp │ │ │ │ ├── strncasecmp.cpp │ │ │ │ ├── strncat.cpp │ │ │ │ ├── strncmp.cpp │ │ │ │ ├── strncpy.cpp │ │ │ │ ├── strndup.cpp │ │ │ │ └── strrchr.cpp │ │ │ ├── sys │ │ │ │ ├── socket.h │ │ │ │ ├── socket │ │ │ │ │ ├── accept.cpp │ │ │ │ │ ├── bind.cpp │ │ │ │ │ ├── connect.cpp │ │ │ │ │ ├── listen.cpp │ │ │ │ │ ├── recvfrom.cpp │ │ │ │ │ ├── sendto.cpp │ │ │ │ │ ├── shutdown.cpp │ │ │ │ │ └── socket.cpp │ │ │ │ ├── stat.h │ │ │ │ ├── stat │ │ │ │ │ ├── creat.cpp │ │ │ │ │ ├── mkdir.cpp │ │ │ │ │ ├── mknod.cpp │ │ │ │ │ └── stat.cpp │ │ │ │ ├── time.h │ │ │ │ ├── time │ │ │ │ │ ├── gettimeofday.cpp │ │ │ │ │ └── printtimediff.cpp │ │ │ │ ├── types.h │ │ │ │ ├── utsname.h │ │ │ │ ├── utsname │ │ │ │ │ └── utsname.cpp │ │ │ │ ├── wait.h │ │ │ │ └── wait │ │ │ │ │ └── wait.cpp │ │ │ ├── syslog.h │ │ │ ├── syslog │ │ │ │ ├── closelog.cpp │ │ │ │ ├── openlog.cpp │ │ │ │ └── syslog.cpp │ │ │ ├── time.h │ │ │ ├── time │ │ │ │ └── time.cpp │ │ │ ├── unistd.h │ │ │ └── unistd │ │ │ │ ├── chdir.cpp │ │ │ │ ├── close.cpp │ │ │ │ ├── execv.cpp │ │ │ │ ├── forkexec.cpp │ │ │ │ ├── getcwd.cpp │ │ │ │ ├── gethostname.cpp │ │ │ │ ├── getpid.cpp │ │ │ │ ├── getppid.cpp │ │ │ │ ├── lseek.cpp │ │ │ │ ├── read.cpp │ │ │ │ ├── sleep.cpp │ │ │ │ ├── spawn.cpp │ │ │ │ ├── unlink.cpp │ │ │ │ └── write.cpp │ │ ├── libstd │ │ │ ├── Application.cpp │ │ │ ├── Application.h │ │ │ ├── Argument.cpp │ │ │ ├── Argument.h │ │ │ ├── ArgumentContainer.cpp │ │ │ ├── ArgumentContainer.h │ │ │ ├── ArgumentParser.cpp │ │ │ ├── ArgumentParser.h │ │ │ ├── Array.h │ │ │ ├── Assert.h │ │ │ ├── Associative.h │ │ │ ├── BitArray.cpp │ │ │ ├── BitArray.h │ │ │ ├── BitOperations.h │ │ │ ├── Callback.h │ │ │ ├── Character.h │ │ │ ├── Comparable.h │ │ │ ├── Container.cpp │ │ │ ├── Container.h │ │ │ ├── Factory.h │ │ │ ├── HashFunction.cpp │ │ │ ├── HashFunction.h │ │ │ ├── HashIterator.h │ │ │ ├── HashTable.h │ │ │ ├── Index.h │ │ │ ├── Iterator.h │ │ │ ├── List.h │ │ │ ├── ListIterator.h │ │ │ ├── Log.cpp │ │ │ ├── Log.h │ │ │ ├── Macros.h │ │ │ ├── MemoryBlock.cpp │ │ │ ├── MemoryBlock.h │ │ │ ├── SConscript │ │ │ ├── Sequence.h │ │ │ ├── Singleton.h │ │ │ ├── String.cpp │ │ │ ├── String.h │ │ │ ├── Types.h │ │ │ └── Vector.h │ │ ├── libteken │ │ │ ├── SConscript │ │ │ ├── sequences │ │ │ ├── teken.c │ │ │ ├── teken.h │ │ │ ├── teken_scs.h │ │ │ ├── teken_state.h │ │ │ ├── teken_subr.h │ │ │ ├── teken_subr_compat.h │ │ │ └── teken_wcwidth.h │ │ ├── libtest │ │ │ ├── DirectoryScanner.cpp │ │ │ ├── DirectoryScanner.h │ │ │ ├── ExternalTest.cpp │ │ │ ├── ExternalTest.h │ │ │ ├── LocalTest.cpp │ │ │ ├── LocalTest.h │ │ │ ├── SConscript │ │ │ ├── StdoutReporter.cpp │ │ │ ├── StdoutReporter.h │ │ │ ├── TAPReporter.cpp │ │ │ ├── TAPReporter.h │ │ │ ├── TestCase.h │ │ │ ├── TestChar.h │ │ │ ├── TestData.h │ │ │ ├── TestInstance.cpp │ │ │ ├── TestInstance.h │ │ │ ├── TestInt.h │ │ │ ├── TestMain.h │ │ │ ├── TestReporter.cpp │ │ │ ├── TestReporter.h │ │ │ ├── TestResult.cpp │ │ │ ├── TestResult.h │ │ │ ├── TestRunner.cpp │ │ │ ├── TestRunner.h │ │ │ ├── TestSuite.cpp │ │ │ └── TestSuite.h │ │ └── libusb │ │ │ ├── SConscript │ │ │ ├── USB.h │ │ │ ├── USBController.cpp │ │ │ ├── USBController.h │ │ │ ├── USBDescriptor.h │ │ │ ├── USBDevice.cpp │ │ │ ├── USBDevice.h │ │ │ ├── USBHub.cpp │ │ │ ├── USBHub.h │ │ │ ├── USBMessage.h │ │ │ ├── USBPort.h │ │ │ ├── USBTransfer.h │ │ │ ├── USBTransferFile.cpp │ │ │ └── USBTransferFile.h │ ├── server │ │ ├── SConscript │ │ ├── ata │ │ │ ├── ATAController.cpp │ │ │ ├── ATAController.h │ │ │ └── SConscript │ │ ├── core │ │ │ ├── CoreServer.cpp │ │ │ ├── CoreServer.h │ │ │ ├── Main.cpp │ │ │ └── SConscript │ │ ├── filesystem │ │ │ ├── SConscript │ │ │ ├── linn │ │ │ │ ├── LinnCreate.cpp │ │ │ │ ├── LinnCreate.h │ │ │ │ ├── LinnDirectory.cpp │ │ │ │ ├── LinnDirectory.h │ │ │ │ ├── LinnDirectoryEntry.h │ │ │ │ ├── LinnDump.cpp │ │ │ │ ├── LinnFile.cpp │ │ │ │ ├── LinnFile.h │ │ │ │ ├── LinnFileSystem.cpp │ │ │ │ ├── LinnFileSystem.h │ │ │ │ ├── LinnGroup.h │ │ │ │ ├── LinnInode.h │ │ │ │ ├── LinnSuperBlock.h │ │ │ │ └── SConscript │ │ │ └── tmp │ │ │ │ ├── Main.cpp │ │ │ │ ├── SConscript │ │ │ │ ├── TmpFileSystem.cpp │ │ │ │ └── TmpFileSystem.h │ │ ├── i2c │ │ │ ├── SConscript │ │ │ └── grovepi │ │ │ │ ├── AnalogPort.cpp │ │ │ │ ├── AnalogPort.h │ │ │ │ ├── Demo.cpp │ │ │ │ ├── DigitalPort.cpp │ │ │ │ ├── DigitalPort.h │ │ │ │ ├── LCDBar.cpp │ │ │ │ ├── LCDBar.h │ │ │ │ ├── Main.cpp │ │ │ │ └── SConscript │ │ ├── idle │ │ │ ├── Main.cpp │ │ │ └── SConscript │ │ ├── ipctest │ │ │ ├── Main.cpp │ │ │ └── SConscript │ │ ├── network │ │ │ ├── SConscript │ │ │ ├── loopback │ │ │ │ ├── Loopback.cpp │ │ │ │ ├── Loopback.h │ │ │ │ ├── Main.cpp │ │ │ │ └── SConscript │ │ │ └── smsc95xx │ │ │ │ ├── Main.cpp │ │ │ │ ├── SConscript │ │ │ │ ├── SMSC95xx.cpp │ │ │ │ ├── SMSC95xx.h │ │ │ │ ├── SMSC95xxUSB.cpp │ │ │ │ └── SMSC95xxUSB.h │ │ ├── pci │ │ │ ├── PCIConfig.cpp │ │ │ ├── PCIConfig.h │ │ │ ├── PCIDetect.cpp │ │ │ ├── PCIDevice.h │ │ │ ├── PCIRegister.cpp │ │ │ ├── PCIRegister.h │ │ │ ├── PCIServer.cpp │ │ │ ├── PCIServer.h │ │ │ └── SConscript │ │ ├── ps2 │ │ │ ├── Keyboard.cpp │ │ │ ├── Keyboard.h │ │ │ ├── Main.cpp │ │ │ └── SConscript │ │ ├── serial │ │ │ ├── Main.cpp │ │ │ ├── PL011.cpp │ │ │ ├── PL011.h │ │ │ ├── SConscript │ │ │ ├── i8250.cpp │ │ │ └── i8250.h │ │ ├── terminal │ │ │ ├── Main.cpp │ │ │ ├── SConscript │ │ │ ├── Terminal.cpp │ │ │ ├── Terminal.h │ │ │ └── TerminalCodes.h │ │ ├── time │ │ │ ├── Main.cpp │ │ │ ├── SConscript │ │ │ ├── Time.cpp │ │ │ └── Time.h │ │ ├── usb │ │ │ ├── SConscript │ │ │ ├── controller │ │ │ │ ├── Main.cpp │ │ │ │ ├── SConscript │ │ │ │ ├── SynopsisChannel.cpp │ │ │ │ ├── SynopsisChannel.h │ │ │ │ ├── SynopsisController.cpp │ │ │ │ └── SynopsisController.h │ │ │ ├── hub │ │ │ │ ├── Main.cpp │ │ │ │ └── SConscript │ │ │ └── keyboard │ │ │ │ └── SConscript │ │ └── video │ │ │ ├── Main.cpp │ │ │ ├── SConscript │ │ │ ├── VGA.cpp │ │ │ └── VGA.h │ ├── support │ │ ├── doxygen │ │ │ ├── Doxyfile │ │ │ └── Doxygen.h │ │ └── scons │ │ │ ├── archive.py │ │ │ ├── autoconf.py │ │ │ ├── binary.py │ │ │ ├── bootimage.py │ │ │ ├── build.py │ │ │ ├── checksum.py │ │ │ ├── config.py │ │ │ ├── iso.py │ │ │ ├── linn.py │ │ │ ├── phony.py │ │ │ └── test.py │ └── test │ │ ├── Main.cpp │ │ ├── SConscript │ │ └── lib │ │ ├── SConscript │ │ ├── liballoc │ │ ├── BubbleAllocatorTest.cpp │ │ └── SConscript │ │ ├── libposix │ │ ├── AbsTest.cpp │ │ ├── SConscript │ │ └── SqrtTest.cpp │ │ └── libstd │ │ ├── ArrayTest.cpp │ │ ├── BitArrayTest.cpp │ │ ├── HashIteratorTest.cpp │ │ ├── HashTableTest.cpp │ │ ├── IndexTest.cpp │ │ ├── ListIteratorTest.cpp │ │ ├── ListTest.cpp │ │ ├── MacrosTest.cpp │ │ ├── SConscript │ │ ├── SingletonTest.cpp │ │ ├── StringTest.cpp │ │ └── VectorTest.cpp └── pat │ ├── 001.cpp │ ├── 002.cpp │ ├── 1014.cpp │ ├── a │ ├── a.out │ └── try.cpp ├── chat_server ├── Makefile ├── ReadMe.txt ├── chat.cpp ├── chat.h ├── client.cpp ├── pressure_test.cpp ├── server.cpp ├── threadpoll.cpp └── threadpoll.h ├── evpp ├── CMakeLists.txt ├── any.h ├── buffer.cc ├── buffer.h ├── connector.cc ├── connector.h ├── dns_resolver.cc ├── dns_resolver.h ├── duration.cc ├── duration.h ├── duration.inl.h ├── event_loop.cc ├── event_loop.h ├── event_loop_thread.cc ├── event_loop_thread.h ├── event_loop_thread_pool.cc ├── event_loop_thread_pool.h ├── event_watcher.cc ├── event_watcher.h ├── evpp_export.h ├── exp.h ├── fd_channel.cc ├── fd_channel.h ├── gettimeofday.h ├── http │ ├── context.cc │ ├── context.h │ ├── http_server.cc │ ├── http_server.h │ ├── service.cc │ ├── service.h │ └── stats.h ├── httpc │ ├── conn.cc │ ├── conn.h │ ├── conn_pool.cc │ ├── conn_pool.h │ ├── request.cc │ ├── request.h │ ├── response.cc │ ├── response.h │ ├── url_parser.cc │ └── url_parser.h ├── inner_pre.cc ├── inner_pre.h ├── invoke_timer.cc ├── invoke_timer.h ├── libevent_compact.cc ├── libevent_headers.h ├── listener.cc ├── listener.h ├── log_config.h ├── memmem.h ├── platform_config.h ├── server_status.h ├── slice.h ├── sockets.cc ├── sockets.h ├── sys_addrinfo.h ├── sys_sockets.h ├── tcp_callbacks.h ├── tcp_client.cc ├── tcp_client.h ├── tcp_conn.cc ├── tcp_conn.h ├── tcp_server.cc ├── tcp_server.h ├── thread_dispatch_policy.h ├── timestamp.h ├── timestamp.inl.h ├── udp │ ├── sync_udp_client.cc │ ├── sync_udp_client.h │ ├── udp_message.h │ ├── udp_server.cc │ └── udp_server.h └── utility.h ├── hello.cc ├── html └── Garden │ ├── Garden.html │ ├── Thumbs.db │ ├── default.css │ └── images │ ├── Thumbs.db │ ├── btn_about.png │ ├── btn_contact.png │ ├── btn_home.png │ ├── btn_problem.png │ ├── btn_products.png │ ├── btn_tips.png │ ├── dog1.jpeg │ ├── dog2.jpeg │ ├── dog3.jpeg │ ├── dog4.jpeg │ ├── dog5.jpeg │ ├── leaf-green.jpg │ ├── leaves.jpg │ ├── peaches.jpg │ └── sm_leaves.jpg ├── laboratory ├── Buffer.cc ├── Buffer.h ├── Channel.cc ├── Channel.h ├── Condition.h ├── CountDownLatch.h ├── Directory.cc ├── Directory.h ├── Epoller.cc ├── Epoller.h ├── EventLoop.cc ├── EventLoop.h ├── File.cc ├── File.h ├── InetAddress.h ├── Mutex.h ├── ReadMe.md ├── SerialPort.cc ├── SerialPort.h ├── Socket.cc ├── Socket.h ├── TaskQueue.h ├── TcpConnection.cc ├── TcpConnection.h ├── Thread.cc ├── Thread.h ├── ThreadPool.cc ├── ThreadPool.h ├── TimeLoop.cc ├── TimeLoop.h ├── Timer.h ├── TimerQueue.cc ├── TimerQueue.h ├── Timestamp.h ├── Typedef.h ├── client │ ├── AsyncEventLoop.cc │ ├── AsyncEventLoop.h │ ├── Connector.cc │ ├── Connector.h │ ├── ConnectorThread.h │ ├── TcpClient.cc │ ├── TcpClient.h │ └── test │ │ ├── CMakeLists.txt │ │ ├── ConnectorTest.cc │ │ ├── ConnectorThreadTest.cc │ │ └── TcpClientTest.cc ├── mutilServer │ ├── Current.cc │ ├── Current.h │ ├── EventLoopThread.cc │ ├── EventLoopThread.h │ ├── EventLoopThreadPool.cc │ ├── EventLoopThreadPool.h │ ├── MutilAcceptor.cc │ ├── MutilAcceptor.h │ ├── MutilTcpServer.cc │ ├── MutilTcpServer.h │ └── test │ │ ├── CMakeCache.txt │ │ ├── CMakeLists.txt │ │ ├── CurrentTest.cc │ │ ├── EventLoopThreadPoolTest.cc │ │ ├── EventLoopThreadTest.cc │ │ ├── Makefile │ │ ├── MutilAcceptorTest.cc │ │ ├── MutilTcpServerTest.cc │ │ └── cmake_install.cmake ├── rapidjson │ ├── allocators.h │ ├── document.h │ ├── encodedstream.h │ ├── encodings.h │ ├── error │ │ ├── en.h │ │ └── error.h │ ├── filereadstream.h │ ├── filewritestream.h │ ├── fwd.h │ ├── internal │ │ ├── biginteger.h │ │ ├── diyfp.h │ │ ├── dtoa.h │ │ ├── ieee754.h │ │ ├── itoa.h │ │ ├── meta.h │ │ ├── pow10.h │ │ ├── regex.h │ │ ├── stack.h │ │ ├── strfunc.h │ │ ├── strtod.h │ │ └── swap.h │ ├── istreamwrapper.h │ ├── memorybuffer.h │ ├── memorystream.h │ ├── msinttypes │ │ ├── inttypes.h │ │ └── stdint.h │ ├── ostreamwrapper.h │ ├── pointer.h │ ├── prettywriter.h │ ├── rapidjson.h │ ├── reader.h │ ├── schema.h │ ├── stream.h │ ├── stringbuffer.h │ └── writer.h ├── scp.sh ├── singleClient │ ├── SingleTcpClient.cc │ └── SingleTcpClient.h ├── singleServer │ ├── Acceptor.cc │ ├── Acceptor.h │ ├── TcpServer.cc │ └── TcpServer.h ├── src │ ├── CMakeLists.txt │ ├── Client.cc │ ├── ReadMe.md │ ├── Server.cc │ ├── build │ │ ├── CMakeCache.txt │ │ ├── CMakeFiles │ │ │ ├── 3.5.1 │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ ├── CompilerIdC │ │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ │ └── a.out │ │ │ │ └── CompilerIdCXX │ │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ │ └── a.out │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ ├── CMakeOutput.log │ │ │ ├── Makefile.cmake │ │ │ ├── Makefile2 │ │ │ ├── TargetDirectories.txt │ │ │ ├── client.dir │ │ │ │ ├── CXX.includecache │ │ │ │ ├── Client.cc.o │ │ │ │ ├── DependInfo.cmake │ │ │ │ ├── build.make │ │ │ │ ├── cmake_clean.cmake │ │ │ │ ├── depend.internal │ │ │ │ ├── depend.make │ │ │ │ ├── flags.make │ │ │ │ ├── home │ │ │ │ │ └── uuchen │ │ │ │ │ │ └── git │ │ │ │ │ │ └── laboratory │ │ │ │ │ │ ├── Buffer.cc.o │ │ │ │ │ │ ├── File.cc.o │ │ │ │ │ │ ├── Socket.cc.o │ │ │ │ │ │ └── singleClient │ │ │ │ │ │ └── SingleTcpClient.cc.o │ │ │ │ ├── link.txt │ │ │ │ └── progress.make │ │ │ ├── cmake.check_cache │ │ │ ├── feature_tests.bin │ │ │ ├── feature_tests.c │ │ │ ├── feature_tests.cxx │ │ │ ├── progress.marks │ │ │ └── server.dir │ │ │ │ ├── CXX.includecache │ │ │ │ ├── DependInfo.cmake │ │ │ │ ├── Server.cc.o │ │ │ │ ├── build.make │ │ │ │ ├── cmake_clean.cmake │ │ │ │ ├── depend.internal │ │ │ │ ├── depend.make │ │ │ │ ├── flags.make │ │ │ │ ├── home │ │ │ │ └── uuchen │ │ │ │ │ └── git │ │ │ │ │ └── laboratory │ │ │ │ │ ├── Buffer.cc.o │ │ │ │ │ ├── Channel.cc.o │ │ │ │ │ ├── Epoller.cc.o │ │ │ │ │ ├── EventLoop.cc.o │ │ │ │ │ ├── File.cc.o │ │ │ │ │ ├── Socket.cc.o │ │ │ │ │ ├── TcpConnection.cc.o │ │ │ │ │ ├── Thread.cc.o │ │ │ │ │ ├── ThreadPool.cc.o │ │ │ │ │ └── singleServer │ │ │ │ │ ├── Acceptor.cc.o │ │ │ │ │ └── TcpServer.cc.o │ │ │ │ ├── link.txt │ │ │ │ └── progress.make │ │ ├── Makefile │ │ ├── client │ │ ├── cmake_install.cmake │ │ └── server │ └── main.cc └── test │ ├── a │ ├── dirtest.cc │ └── test.cc ├── libev ├── Changes ├── LICENSE ├── Makefile.am ├── Makefile.in ├── README ├── Symbols.ev ├── Symbols.event ├── aclocal.m4 ├── autogen.sh ├── compile ├── config.guess ├── config.h.in ├── config.sub ├── configure ├── configure.ac ├── depcomp ├── ev++.h ├── ev.3 ├── ev.c ├── ev.h ├── ev.pod ├── ev_epoll.c ├── ev_kqueue.c ├── ev_poll.c ├── ev_port.c ├── ev_select.c ├── ev_vars.h ├── ev_win32.c ├── ev_wrap.h ├── event.c ├── event.h ├── install-sh ├── libev.m4 ├── ltmain.sh ├── missing └── mkinstalldirs ├── muduo ├── base │ ├── AsyncLogging.cc │ ├── AsyncLogging.h │ ├── Atomic.h │ ├── BlockingQueue.h │ ├── BoundedBlockingQueue.h │ ├── CMakeLists.txt │ ├── Condition.cc │ ├── Condition.h │ ├── CountDownLatch.cc │ ├── CountDownLatch.h │ ├── CurrentThread.h │ ├── Date.cc │ ├── Date.h │ ├── Exception.cc │ ├── Exception.h │ ├── FileUtil.cc │ ├── FileUtil.h │ ├── GzipFile.h │ ├── LogFile.cc │ ├── LogFile.h │ ├── LogStream.cc │ ├── LogStream.h │ ├── Logging.cc │ ├── Logging.h │ ├── Mutex.h │ ├── ProcessInfo.cc │ ├── ProcessInfo.h │ ├── Singleton.h │ ├── StringPiece.h │ ├── Thread.cc │ ├── Thread.h │ ├── ThreadLocal.h │ ├── ThreadLocalSingleton.h │ ├── ThreadPool.cc │ ├── ThreadPool.h │ ├── TimeZone.cc │ ├── TimeZone.h │ ├── Timestamp.cc │ ├── Timestamp.h │ ├── Types.h │ ├── WeakCallback.h │ ├── copyable.h │ ├── premake4.lua │ └── tests │ │ ├── AsyncLogging_test.cc │ │ ├── Atomic_unittest.cc │ │ ├── BlockingQueue_bench.cc │ │ ├── BlockingQueue_test.cc │ │ ├── BoundedBlockingQueue_test.cc │ │ ├── CMakeLists.txt │ │ ├── Date_unittest.cc │ │ ├── Exception_test.cc │ │ ├── FileUtil_test.cc │ │ ├── Fork_test.cc │ │ ├── GzipFile_test.cc │ │ ├── LogFile_test.cc │ │ ├── LogStream_bench.cc │ │ ├── LogStream_test.cc │ │ ├── Logging_test.cc │ │ ├── Mutex_test.cc │ │ ├── ProcessInfo_test.cc │ │ ├── SingletonThreadLocal_test.cc │ │ ├── Singleton_test.cc │ │ ├── ThreadLocalSingleton_test.cc │ │ ├── ThreadLocal_test.cc │ │ ├── ThreadPool_test.cc │ │ ├── Thread_bench.cc │ │ ├── Thread_test.cc │ │ ├── TimeZone_unittest.cc │ │ └── Timestamp_unittest.cc └── net │ ├── Acceptor.cc │ ├── Acceptor.h │ ├── Buffer.cc │ ├── Buffer.h │ ├── CMakeLists.txt │ ├── Callbacks.h │ ├── Channel.cc │ ├── Channel.h │ ├── Connector.cc │ ├── Connector.h │ ├── Endian.h │ ├── EventLoop.cc │ ├── EventLoop.h │ ├── EventLoopThread.cc │ ├── EventLoopThread.h │ ├── EventLoopThreadPool.cc │ ├── EventLoopThreadPool.h │ ├── InetAddress.cc │ ├── InetAddress.h │ ├── Poller.cc │ ├── Poller.h │ ├── Socket.cc │ ├── Socket.h │ ├── SocketsOps.cc │ ├── SocketsOps.h │ ├── TcpClient.cc │ ├── TcpClient.h │ ├── TcpConnection.cc │ ├── TcpConnection.h │ ├── TcpServer.cc │ ├── TcpServer.h │ ├── Timer.cc │ ├── Timer.h │ ├── TimerId.h │ ├── TimerQueue.cc │ ├── TimerQueue.h │ ├── ZlibStream.h │ ├── boilerplate.cc │ ├── boilerplate.h │ ├── http │ ├── CMakeLists.txt │ ├── HttpContext.cc │ ├── HttpContext.h │ ├── HttpRequest.h │ ├── HttpResponse.cc │ ├── HttpResponse.h │ ├── HttpServer.cc │ ├── HttpServer.h │ └── tests │ │ ├── HttpRequest_unittest.cc │ │ └── HttpServer_test.cc │ ├── inspect │ ├── CMakeLists.txt │ ├── Inspector.cc │ ├── Inspector.h │ ├── PerformanceInspector.cc │ ├── PerformanceInspector.h │ ├── ProcessInspector.cc │ ├── ProcessInspector.h │ ├── SystemInspector.cc │ ├── SystemInspector.h │ └── tests │ │ └── Inspector_test.cc │ ├── poller │ ├── DefaultPoller.cc │ ├── EPollPoller.cc │ ├── EPollPoller.h │ ├── PollPoller.cc │ └── PollPoller.h │ ├── premake4.lua │ ├── protobuf │ ├── BufferStream.h │ ├── CMakeLists.txt │ ├── ProtobufCodecLite.cc │ └── ProtobufCodecLite.h │ ├── protorpc │ ├── CMakeLists.txt │ ├── README │ ├── RpcChannel.cc │ ├── RpcChannel.h │ ├── RpcCodec.cc │ ├── RpcCodec.h │ ├── RpcCodec_test.cc │ ├── RpcServer.cc │ ├── RpcServer.h │ ├── google-inl.h │ ├── rpc.proto │ └── rpcservice.proto │ └── tests │ ├── Buffer_unittest.cc │ ├── CMakeLists.txt │ ├── Channel_test.cc │ ├── EchoClient_unittest.cc │ ├── EchoServer_unittest.cc │ ├── EventLoopThreadPool_unittest.cc │ ├── EventLoopThread_unittest.cc │ ├── EventLoop_unittest.cc │ ├── InetAddress_unittest.cc │ ├── TcpClient_reg1.cc │ ├── TcpClient_reg2.cc │ ├── TcpClient_reg3.cc │ ├── TimerQueue_unittest.cc │ └── ZlibStream_unittest.cc ├── opencv ├── CMakeLists.txt ├── addWidget.cc ├── alpha.cc ├── build │ ├── CMakeCache.txt │ ├── CMakeFiles │ │ ├── 3.5.1 │ │ │ ├── CMakeCCompiler.cmake │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ ├── CMakeSystem.cmake │ │ │ ├── CompilerIdC │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ └── a.out │ │ │ └── CompilerIdCXX │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ └── a.out │ │ ├── CMakeDirectoryInformation.cmake │ │ ├── CMakeError.log │ │ ├── CMakeOutput.log │ │ ├── Makefile.cmake │ │ ├── Makefile2 │ │ ├── TargetDirectories.txt │ │ ├── a.dir │ │ │ ├── CXX.includecache │ │ │ ├── DependInfo.cmake │ │ │ ├── build.make │ │ │ ├── circle.cc.o │ │ │ ├── cmake_clean.cmake │ │ │ ├── depend.internal │ │ │ ├── depend.make │ │ │ ├── flags.make │ │ │ ├── link.txt │ │ │ └── progress.make │ │ ├── cmake.check_cache │ │ ├── feature_tests.bin │ │ ├── feature_tests.c │ │ ├── feature_tests.cxx │ │ └── progress.marks │ ├── Makefile │ ├── a │ └── cmake_install.cmake ├── circle.cc ├── clock.cc └── test.cc ├── python ├── 3 │ ├── test1.py │ ├── test2.py │ └── test3.py ├── 4 │ ├── test1.py │ ├── test2.py │ ├── test3.py │ ├── test4.py │ ├── test5.py │ ├── test6.py │ └── test7.py ├── 5 │ └── test1.py ├── 6 │ ├── calss.py │ └── test1.py ├── 9 │ └── test.py ├── 1.py ├── freenote │ ├── README │ ├── bin │ │ ├── gm_continuous_digit.abnf │ │ ├── msc │ │ │ └── msc.cfg │ │ ├── source.txt │ │ ├── userwords.txt │ │ └── wav │ │ │ ├── iflytek01.wav │ │ │ ├── iflytek02.wav │ │ │ └── weather.pcm │ ├── doc │ │ ├── Grammar Development Guidelines.chm │ │ ├── MSC Novice Manual for Linux.pdf │ │ ├── Open Semantic Platform API Documents.pdf │ │ ├── Recording API Documents_.doc │ │ └── iFlytek MSC Reference Manual │ │ │ ├── all__0_8js.html │ │ │ ├── all__1_8js.html │ │ │ ├── arrowdown.png │ │ │ ├── arrowright.png │ │ │ ├── bc_s.png │ │ │ ├── bdwn.png │ │ │ ├── closed.png │ │ │ ├── dir_25539194184bab781b1c7ecd67774cd8.html │ │ │ ├── dir_9a65024ac0a05d9abfc2bb6c7ff8f818.html │ │ │ ├── doc.png │ │ │ ├── doxygen.css │ │ │ ├── doxygen.png │ │ │ ├── dynsections.js │ │ │ ├── dynsections_8js.html │ │ │ ├── files.html │ │ │ ├── files__0_8js.html │ │ │ ├── files__1_8js.html │ │ │ ├── folderclosed.png │ │ │ ├── folderopen.png │ │ │ ├── functions__0_8js.html │ │ │ ├── functions__1_8js.html │ │ │ ├── globals.html │ │ │ ├── globals_func.html │ │ │ ├── globals_vars.html │ │ │ ├── index.html │ │ │ ├── jquery.js │ │ │ ├── jquery_8js.html │ │ │ ├── msp__cmn_8h.html │ │ │ ├── msp__cmn_8h_source.html │ │ │ ├── nav_f.png │ │ │ ├── nav_g.png │ │ │ ├── nav_h.png │ │ │ ├── open.png │ │ │ ├── qisr_8h.html │ │ │ ├── qisr_8h_source.html │ │ │ ├── qmfv_8h.html │ │ │ ├── qmfv_8h_source.html │ │ │ ├── qtts_8h.html │ │ │ ├── qtts_8h_source.html │ │ │ ├── search │ │ │ ├── all_0.html │ │ │ ├── all_0.js │ │ │ ├── all_1.html │ │ │ ├── all_1.js │ │ │ ├── all_10.html │ │ │ ├── all_10.js │ │ │ ├── all_11.html │ │ │ ├── all_11.js │ │ │ ├── all_2.html │ │ │ ├── all_2.js │ │ │ ├── all_3.html │ │ │ ├── all_3.js │ │ │ ├── all_4.html │ │ │ ├── all_4.js │ │ │ ├── all_5.html │ │ │ ├── all_5.js │ │ │ ├── all_6.html │ │ │ ├── all_6.js │ │ │ ├── all_7.html │ │ │ ├── all_7.js │ │ │ ├── all_8.html │ │ │ ├── all_8.js │ │ │ ├── all_9.html │ │ │ ├── all_9.js │ │ │ ├── all_a.html │ │ │ ├── all_a.js │ │ │ ├── all_b.html │ │ │ ├── all_b.js │ │ │ ├── all_c.html │ │ │ ├── all_c.js │ │ │ ├── all_d.html │ │ │ ├── all_d.js │ │ │ ├── all_e.html │ │ │ ├── all_e.js │ │ │ ├── all_f.html │ │ │ ├── all_f.js │ │ │ ├── close.png │ │ │ ├── files_0.html │ │ │ ├── files_0.js │ │ │ ├── files_1.html │ │ │ ├── files_1.js │ │ │ ├── files_2.html │ │ │ ├── files_2.js │ │ │ ├── files_3.html │ │ │ ├── files_3.js │ │ │ ├── files_4.html │ │ │ ├── files_4.js │ │ │ ├── files_5.html │ │ │ ├── files_5.js │ │ │ ├── files_6.html │ │ │ ├── files_6.js │ │ │ ├── functions_0.html │ │ │ ├── functions_0.js │ │ │ ├── functions_1.html │ │ │ ├── functions_1.js │ │ │ ├── functions_2.html │ │ │ ├── functions_2.js │ │ │ ├── functions_3.html │ │ │ ├── functions_3.js │ │ │ ├── functions_4.html │ │ │ ├── functions_4.js │ │ │ ├── functions_5.html │ │ │ ├── functions_5.js │ │ │ ├── functions_6.html │ │ │ ├── functions_6.js │ │ │ ├── functions_7.html │ │ │ ├── functions_7.js │ │ │ ├── functions_8.html │ │ │ ├── functions_8.js │ │ │ ├── functions_9.html │ │ │ ├── functions_9.js │ │ │ ├── functions_a.html │ │ │ ├── functions_a.js │ │ │ ├── mag_sel.png │ │ │ ├── nomatches.html │ │ │ ├── search.css │ │ │ ├── search.js │ │ │ ├── search_l.png │ │ │ ├── search_m.png │ │ │ ├── search_r.png │ │ │ ├── searchdata.js │ │ │ ├── variables_0.html │ │ │ ├── variables_0.js │ │ │ ├── variables_1.html │ │ │ ├── variables_1.js │ │ │ ├── variables_2.html │ │ │ ├── variables_2.js │ │ │ ├── variables_3.html │ │ │ ├── variables_3.js │ │ │ ├── variables_4.html │ │ │ ├── variables_4.js │ │ │ ├── variables_5.html │ │ │ ├── variables_5.js │ │ │ ├── variables_6.html │ │ │ ├── variables_6.js │ │ │ ├── variables_7.html │ │ │ └── variables_7.js │ │ │ ├── search_8js.html │ │ │ ├── searchdata_8js.html │ │ │ ├── splitbar.png │ │ │ ├── sync_off.png │ │ │ ├── sync_on.png │ │ │ ├── tab_a.png │ │ │ ├── tab_b.png │ │ │ ├── tab_h.png │ │ │ ├── tab_s.png │ │ │ └── tabs.css │ ├── include │ │ ├── msp_cmn.h │ │ ├── msp_errors.h │ │ ├── msp_types.h │ │ ├── qisr.h │ │ └── qtts.h │ ├── libs │ │ ├── x64 │ │ │ └── libmsc.so │ │ └── x86 │ │ │ └── libmsc.so │ └── samples │ │ ├── asr_sample │ │ ├── 32bit_make.sh │ │ ├── 64bit_make.sh │ │ ├── Makefile │ │ └── asr_sample.c │ │ ├── iat_record │ │ ├── 32bit_make.sh │ │ ├── 64bit_make.sh │ │ ├── Makefile │ │ ├── formats.h │ │ ├── iat_record.c │ │ ├── linuxrec.c │ │ ├── linuxrec.h │ │ ├── speech_recognizer.c │ │ └── speech_recognizer.h │ │ ├── iat_sample │ │ ├── 32bit_make.sh │ │ ├── 64bit_make.sh │ │ ├── Makefile │ │ └── iat_sample.c │ │ ├── sch_speak │ │ ├── 32bit_make.sh │ │ ├── 64bit_make.sh │ │ ├── Makefile │ │ └── sch_speak.c │ │ ├── sch_text │ │ ├── 32bit_make.sh │ │ ├── 64bit_make.sh │ │ ├── Makefile │ │ └── sch_text.c │ │ └── tts_sample │ │ ├── 32bit_make.sh │ │ ├── 64bit_make.sh │ │ ├── Makefile │ │ └── tts_sample.c ├── regex.py └── urllib │ └── url.py ├── sdn ├── SDN基础题.pdf └── simple.py ├── simchat ├── Makefile ├── chat.cpp ├── chat.h ├── client.cpp └── server.cpp ├── smartCarClient ├── CMakeLists.txt ├── Client.cc ├── File.cc ├── File.h ├── InetAddress.cc ├── InetAddress.h ├── Mutex.cc ├── Mutex.h ├── Socket.cc ├── Socket.h ├── build │ ├── CMakeCache.txt │ ├── CMakeFiles │ │ ├── 3.5.1 │ │ │ ├── CMakeCCompiler.cmake │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ ├── CMakeSystem.cmake │ │ │ ├── CompilerIdC │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ └── a.out │ │ │ └── CompilerIdCXX │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ └── a.out │ │ ├── CMakeDirectoryInformation.cmake │ │ ├── CMakeError.log │ │ ├── CMakeOutput.log │ │ ├── Makefile.cmake │ │ ├── Makefile2 │ │ ├── TargetDirectories.txt │ │ ├── client.dir │ │ │ ├── CXX.includecache │ │ │ ├── Client.cc.o │ │ │ ├── DependInfo.cmake │ │ │ ├── File.cc.o │ │ │ ├── InetAddress.cc.o │ │ │ ├── Mutex.cc.o │ │ │ ├── Socket.cc.o │ │ │ ├── build.make │ │ │ ├── cmake_clean.cmake │ │ │ ├── depend.internal │ │ │ ├── depend.make │ │ │ ├── flags.make │ │ │ ├── i18nText.cc.o │ │ │ ├── link.txt │ │ │ └── progress.make │ │ ├── cmake.check_cache │ │ ├── feature_tests.bin │ │ ├── feature_tests.c │ │ ├── feature_tests.cxx │ │ └── progress.marks │ ├── Makefile │ ├── client │ └── cmake_install.cmake ├── error.h ├── i18nText.cc ├── i18nText.h ├── lzo_supp.h ├── portab.h └── portab_a.h ├── smartCarServer ├── CMakeLists.txt ├── File.cc ├── File.h ├── HandleEvent.cc ├── HandleEvent.h ├── InetAddress.cc ├── InetAddress.h ├── Mutex.cc ├── Mutex.h ├── Server.cc ├── Socket.cc ├── Socket.h ├── Thread.cc ├── Thread.h ├── build │ ├── CMakeCache.txt │ ├── CMakeFiles │ │ ├── 3.5.1 │ │ │ ├── CMakeCCompiler.cmake │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ ├── CMakeSystem.cmake │ │ │ ├── CompilerIdC │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ └── a.out │ │ │ └── CompilerIdCXX │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ └── a.out │ │ ├── CMakeDirectoryInformation.cmake │ │ ├── CMakeOutput.log │ │ ├── Makefile.cmake │ │ ├── Makefile2 │ │ ├── TargetDirectories.txt │ │ ├── cmake.check_cache │ │ ├── feature_tests.bin │ │ ├── feature_tests.c │ │ ├── feature_tests.cxx │ │ ├── progress.marks │ │ └── server.dir │ │ │ ├── CXX.includecache │ │ │ ├── DependInfo.cmake │ │ │ ├── File.cc.o │ │ │ ├── HandleEvent.cc.o │ │ │ ├── InetAddress.cc.o │ │ │ ├── Mutex.cc.o │ │ │ ├── Server.cc.o │ │ │ ├── Socket.cc.o │ │ │ ├── Thread.cc.o │ │ │ ├── build.make │ │ │ ├── cmake_clean.cmake │ │ │ ├── depend.internal │ │ │ ├── depend.make │ │ │ ├── flags.make │ │ │ ├── link.txt │ │ │ └── progress.make │ ├── Makefile │ ├── cmake_install.cmake │ └── server ├── error.h ├── lzo_supp.h ├── portab.h └── portab_a.h ├── split.cc ├── test ├── Makefile ├── _file_.asm ├── _version.asm ├── a32offs.asm ├── absolute.asm ├── addr64x.asm ├── align13.asm ├── align13s.asm ├── alonesym-obj.asm ├── andbyte.asm ├── aoutso.asm ├── aouttest.asm ├── aouttest.c ├── avx.asm ├── avx005.asm ├── avx2.asm ├── avx512cd.asm ├── avx512er.asm ├── avx512f.asm ├── avx512pf.asm ├── bcd.asm ├── binexe.asm ├── bintest.asm ├── bisect.sh ├── br1879590.asm ├── br2003451.asm ├── br2030823.asm ├── br2148476.asm ├── br2222615.asm ├── br2496848.asm ├── br3005117.asm ├── br3026808.asm ├── br3028880.asm ├── br3041451.asm ├── br3058845.asm ├── br3066383.asm ├── br3074517.asm ├── br3092924.asm ├── br3104312.asm ├── br3109604.asm ├── br3174983.asm ├── br3187743.asm ├── br3189064.asm ├── br3200749.asm ├── br3385573.asm ├── br3392252.asm ├── br3392259.asm ├── br560575.asm ├── br560873.asm ├── br890790.asm ├── br890790_i.asm ├── br978756.asm ├── changed.asm ├── cofftest.asm ├── cofftest.c ├── crc32.asm ├── dtbcd.asm ├── elf64so.asm ├── elfso.asm ├── elftest.asm ├── elftest.c ├── elftest64.c ├── elif.asm ├── expimp.asm ├── far64.asm ├── float.asm ├── float8.asm ├── floatb.asm ├── floatexp.asm ├── floatize.asm ├── floattest.asm ├── floatx.asm ├── fpu.asm ├── fwdopt.asm ├── fwdoptpp.asm ├── gas2nasm.py ├── gather.asm ├── gotoff64.asm ├── hle.asm ├── ifelse.asm ├── ifenv.asm ├── ifmacro.asm ├── iftoken.asm ├── iftoken.pl ├── ilog2.asm ├── imacro.asm ├── imm64.asm ├── immwarn.asm ├── imul.asm ├── inc1.asm ├── inc2.asm ├── inctest.asm ├── insnlbl.asm ├── invlpga.asm ├── jmp64.asm ├── lar_lsl.asm ├── larlsl.asm ├── lnxhello.asm ├── local.asm ├── loopoffs.asm ├── lwp.asm ├── macro-defaults.asm ├── mmxsize.asm ├── movd.asm ├── movd64.asm ├── movimm.asm ├── movnti.asm ├── mpx-64.asm ├── mpx.asm ├── multisection.asm ├── nasmformat.asm ├── new ├── newrdwr.asm ├── nop.asm ├── nullfile.asm ├── objexe.asm ├── objlink.c ├── objtest.asm ├── optimization.asm ├── org.asm ├── paste.asm ├── perf │ ├── label.pl │ ├── macro.pl │ └── token.pl ├── performtest.pl ├── pinsr16.asm ├── pinsr32.asm ├── pinsr64.asm ├── popcnt.asm ├── ppindirect.asm ├── prefix66.asm ├── pushseg.asm ├── r13.asm ├── radix.asm ├── relocs.asm ├── riprel.asm ├── riprel.pl ├── riprel2.asm ├── sha-64.asm ├── sha.asm ├── smartalign16.asm ├── smartalign32.asm ├── smartalign64.asm ├── splitea.asm ├── sreg.asm ├── strlen.asm ├── struc.asm ├── test67.asm ├── testdos.asm ├── testnos3.asm ├── time.asm ├── times.asm ├── tmap.nas ├── uscore.asm ├── utf.asm ├── vex.asm ├── vgather.asm ├── vmread.asm ├── weirdpaste.asm ├── xchg.asm ├── xcrypt.asm ├── xmm0.asm └── zerobyte.asm ├── uftp ├── Buffer.cc ├── Buffer.h ├── Channel.cc ├── Channel.h ├── Condition.h ├── CountDownLatch.h ├── Directory.cc ├── Directory.h ├── Epoller.cc ├── Epoller.h ├── EventLoop.cc ├── EventLoop.h ├── File.cc ├── File.h ├── InetAddress.h ├── Mutex.h ├── ReadMe.md ├── Socket.cc ├── Socket.h ├── TaskQueue.h ├── TcpConnection.cc ├── TcpConnection.h ├── Thread.cc ├── Thread.h ├── ThreadPool.cc ├── ThreadPool.h ├── TimeLoop.cc ├── TimeLoop.h ├── Timer.h ├── TimerQueue.cc ├── TimerQueue.h ├── Timestamp.h ├── Typedef.h ├── client │ ├── AsyncEventLoop.cc │ ├── AsyncEventLoop.h │ ├── Connector.cc │ ├── Connector.h │ ├── ConnectorThread.h │ ├── TcpClient.cc │ ├── TcpClient.h │ └── test │ │ ├── CMakeLists.txt │ │ ├── ConnectorTest.cc │ │ ├── ConnectorThreadTest.cc │ │ └── TcpClientTest.cc ├── mutilServer │ ├── Current.cc │ ├── Current.h │ ├── EventLoopThread.cc │ ├── EventLoopThread.h │ ├── EventLoopThreadPool.cc │ ├── EventLoopThreadPool.h │ ├── MutilAcceptor.cc │ ├── MutilAcceptor.h │ ├── MutilTcpServer.cc │ ├── MutilTcpServer.h │ └── test │ │ ├── CMakeLists.txt │ │ ├── CurrentTest.cc │ │ ├── EventLoopThreadPoolTest.cc │ │ ├── EventLoopThreadTest.cc │ │ ├── MutilAcceptorTest.cc │ │ └── MutilTcpServerTest.cc ├── rapidjson │ ├── allocators.h │ ├── document.h │ ├── encodedstream.h │ ├── encodings.h │ ├── error │ │ ├── en.h │ │ └── error.h │ ├── filereadstream.h │ ├── filewritestream.h │ ├── fwd.h │ ├── internal │ │ ├── biginteger.h │ │ ├── diyfp.h │ │ ├── dtoa.h │ │ ├── ieee754.h │ │ ├── itoa.h │ │ ├── meta.h │ │ ├── pow10.h │ │ ├── regex.h │ │ ├── stack.h │ │ ├── strfunc.h │ │ ├── strtod.h │ │ └── swap.h │ ├── istreamwrapper.h │ ├── memorybuffer.h │ ├── memorystream.h │ ├── msinttypes │ │ ├── inttypes.h │ │ └── stdint.h │ ├── ostreamwrapper.h │ ├── pointer.h │ ├── prettywriter.h │ ├── rapidjson.h │ ├── reader.h │ ├── schema.h │ ├── stream.h │ ├── stringbuffer.h │ └── writer.h ├── scp.sh ├── singleClient │ ├── SingleTcpClient.cc │ └── SingleTcpClient.h ├── src │ ├── CMakeLists.txt │ ├── Client.cc │ ├── ReadMe.md │ ├── Server.cc │ ├── build │ │ ├── CMakeCache.txt │ │ ├── CMakeFiles │ │ │ ├── 3.5.1 │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ ├── CompilerIdC │ │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ │ └── a.out │ │ │ │ └── CompilerIdCXX │ │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ │ └── a.out │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ ├── CMakeOutput.log │ │ │ ├── Makefile.cmake │ │ │ ├── Makefile2 │ │ │ ├── TargetDirectories.txt │ │ │ ├── client.dir │ │ │ │ ├── CXX.includecache │ │ │ │ ├── Client.cc.o │ │ │ │ ├── DependInfo.cmake │ │ │ │ ├── build.make │ │ │ │ ├── cmake_clean.cmake │ │ │ │ ├── depend.internal │ │ │ │ ├── depend.make │ │ │ │ ├── flags.make │ │ │ │ ├── home │ │ │ │ │ └── uuchen │ │ │ │ │ │ └── git │ │ │ │ │ │ └── uftp │ │ │ │ │ │ ├── Buffer.cc.o │ │ │ │ │ │ ├── File.cc.o │ │ │ │ │ │ ├── Socket.cc.o │ │ │ │ │ │ └── singleClient │ │ │ │ │ │ └── SingleTcpClient.cc.o │ │ │ │ ├── link.txt │ │ │ │ └── progress.make │ │ │ ├── cmake.check_cache │ │ │ ├── feature_tests.bin │ │ │ ├── feature_tests.c │ │ │ ├── feature_tests.cxx │ │ │ ├── progress.marks │ │ │ └── server.dir │ │ │ │ ├── CXX.includecache │ │ │ │ ├── DependInfo.cmake │ │ │ │ ├── Server.cc.o │ │ │ │ ├── build.make │ │ │ │ ├── cmake_clean.cmake │ │ │ │ ├── depend.internal │ │ │ │ ├── depend.make │ │ │ │ ├── flags.make │ │ │ │ ├── home │ │ │ │ └── uuchen │ │ │ │ │ └── git │ │ │ │ │ └── uftp │ │ │ │ │ ├── Buffer.cc.o │ │ │ │ │ ├── Channel.cc.o │ │ │ │ │ ├── Epoller.cc.o │ │ │ │ │ ├── EventLoop.cc.o │ │ │ │ │ ├── File.cc.o │ │ │ │ │ ├── Socket.cc.o │ │ │ │ │ ├── TcpConnection.cc.o │ │ │ │ │ ├── Thread.cc.o │ │ │ │ │ ├── ThreadPool.cc.o │ │ │ │ │ └── mutilServer │ │ │ │ │ ├── Current.cc.o │ │ │ │ │ ├── EventLoopThread.cc.o │ │ │ │ │ ├── EventLoopThreadPool.cc.o │ │ │ │ │ ├── MutilAcceptor.cc.o │ │ │ │ │ └── MutilTcpServer.cc.o │ │ │ │ ├── link.txt │ │ │ │ └── progress.make │ │ ├── Makefile │ │ ├── client │ │ ├── cmake_install.cmake │ │ └── server │ └── stillAlive.sh ├── test.cc ├── test │ ├── FileTest.cc │ ├── a │ ├── dirtest.cc │ └── test.cc └── weather.csv ├── unix ├── SendImg │ ├── ReadMe.txt │ ├── client │ │ ├── CMakeLists.txt │ │ ├── includ │ │ │ ├── CMakeLists.txt │ │ │ ├── Client.c │ │ │ ├── Client.h │ │ │ ├── Public.c │ │ │ └── Public.h │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ └── Main_Client.c │ └── server │ │ ├── CMakeLists.txt │ │ ├── includ │ │ ├── CMakeLists.txt │ │ ├── Public.c │ │ ├── Public.h │ │ ├── Server.c │ │ └── Server.h │ │ └── src │ │ ├── CMakeLists.txt │ │ └── Main_Server.c ├── apue │ ├── apue.3e │ │ ├── DISCLAIMER │ │ ├── Make.defines.freebsd │ │ ├── Make.defines.linux │ │ ├── Make.defines.macos │ │ ├── Make.defines.solaris │ │ ├── Make.libapue.inc │ │ ├── Makefile │ │ ├── README │ │ ├── advio │ │ │ ├── Makefile │ │ │ ├── deadlock.c │ │ │ ├── fixup.awk │ │ │ ├── lockfile.c │ │ │ ├── mandatory.c │ │ │ ├── mcopy2.c │ │ │ ├── nonblockw.c │ │ │ ├── readn.c │ │ │ ├── rot13a.c │ │ │ ├── rot13c2.c.in │ │ │ └── writen.c │ │ ├── daemons │ │ │ ├── Makefile │ │ │ ├── init.c │ │ │ ├── reread.c │ │ │ ├── reread2.c │ │ │ └── single.c │ │ ├── datafiles │ │ │ ├── Makefile │ │ │ ├── getpwnam.c │ │ │ └── strftime.c │ │ ├── db │ │ │ ├── Makefile │ │ │ ├── apue_db.h │ │ │ ├── db.c │ │ │ └── t4.c │ │ ├── environ │ │ │ ├── Makefile │ │ │ ├── cmd1.c │ │ │ ├── cmd2.c │ │ │ ├── doatexit.c │ │ │ ├── echoarg.c │ │ │ ├── getrlimit.c │ │ │ ├── hello1.c │ │ │ ├── opendata.c │ │ │ ├── scope.c │ │ │ └── testjmp.c │ │ ├── error.c │ │ ├── exercises │ │ │ ├── Makefile │ │ │ ├── asyncsocket.c │ │ │ ├── bo.c │ │ │ ├── fifo1.c │ │ │ ├── fmemopen.c │ │ │ ├── getlogin.c │ │ │ ├── getpw44bsd.c │ │ │ ├── getpwsvr4.c │ │ │ ├── goodexit.c │ │ │ ├── longpath.c │ │ │ ├── openmax.c │ │ │ ├── pendlock.c │ │ │ ├── pollmsg2.c │ │ │ ├── prtime.c │ │ │ ├── sizepipe.c │ │ │ ├── sleep.c │ │ │ ├── sleepus_poll.c │ │ │ ├── sleepus_select.c │ │ │ ├── vfork3.c │ │ │ └── zombie.c │ │ ├── figlinks │ │ │ ├── fig1.10 │ │ │ ├── fig1.3 │ │ │ ├── fig1.4 │ │ │ ├── fig1.5 │ │ │ ├── fig1.6 │ │ │ ├── fig1.7 │ │ │ ├── fig1.8 │ │ │ ├── fig1.9 │ │ │ ├── fig10.10 │ │ │ ├── fig10.11 │ │ │ ├── fig10.12 │ │ │ ├── fig10.14 │ │ │ ├── fig10.15 │ │ │ ├── fig10.18 │ │ │ ├── fig10.19 │ │ │ ├── fig10.2 │ │ │ ├── fig10.20 │ │ │ ├── fig10.22 │ │ │ ├── fig10.23 │ │ │ ├── fig10.24 │ │ │ ├── fig10.25 │ │ │ ├── fig10.26 │ │ │ ├── fig10.28 │ │ │ ├── fig10.29 │ │ │ ├── fig10.31 │ │ │ ├── fig10.5 │ │ │ ├── fig10.6 │ │ │ ├── fig10.7 │ │ │ ├── fig10.8 │ │ │ ├── fig10.9 │ │ │ ├── fig11.10 │ │ │ ├── fig11.11 │ │ │ ├── fig11.12 │ │ │ ├── fig11.14 │ │ │ ├── fig11.15 │ │ │ ├── fig11.16 │ │ │ ├── fig11.2 │ │ │ ├── fig11.3 │ │ │ ├── fig11.4 │ │ │ ├── fig11.5 │ │ │ ├── fig12.11 │ │ │ ├── fig12.12 │ │ │ ├── fig12.13 │ │ │ ├── fig12.16 │ │ │ ├── fig12.17 │ │ │ ├── fig12.4 │ │ │ ├── fig12.8 │ │ │ ├── fig13.1 │ │ │ ├── fig13.6 │ │ │ ├── fig13.7 │ │ │ ├── fig13.8 │ │ │ ├── fig13.9 │ │ │ ├── fig14.1 │ │ │ ├── fig14.12 │ │ │ ├── fig14.20 │ │ │ ├── fig14.21 │ │ │ ├── fig14.24 │ │ │ ├── fig14.27 │ │ │ ├── fig14.5 │ │ │ ├── fig14.6 │ │ │ ├── fig14.7 │ │ │ ├── fig14.9 │ │ │ ├── fig15.11 │ │ │ ├── fig15.12 │ │ │ ├── fig15.14 │ │ │ ├── fig15.15 │ │ │ ├── fig15.17 │ │ │ ├── fig15.18 │ │ │ ├── fig15.19 │ │ │ ├── fig15.31 │ │ │ ├── fig15.33 │ │ │ ├── fig15.35 │ │ │ ├── fig15.5 │ │ │ ├── fig15.6 │ │ │ ├── fig15.7 │ │ │ ├── fig16.10 │ │ │ ├── fig16.11 │ │ │ ├── fig16.12 │ │ │ ├── fig16.16 │ │ │ ├── fig16.17 │ │ │ ├── fig16.18 │ │ │ ├── fig16.19 │ │ │ ├── fig16.20 │ │ │ ├── fig16.22 │ │ │ ├── fig16.9 │ │ │ ├── fig17.10 │ │ │ ├── fig17.12 │ │ │ ├── fig17.13 │ │ │ ├── fig17.14 │ │ │ ├── fig17.15 │ │ │ ├── fig17.16 │ │ │ ├── fig17.17 │ │ │ ├── fig17.18 │ │ │ ├── fig17.19 │ │ │ ├── fig17.2 │ │ │ ├── fig17.20 │ │ │ ├── fig17.21 │ │ │ ├── fig17.22 │ │ │ ├── fig17.23 │ │ │ ├── fig17.24 │ │ │ ├── fig17.25 │ │ │ ├── fig17.26 │ │ │ ├── fig17.27 │ │ │ ├── fig17.28 │ │ │ ├── fig17.29 │ │ │ ├── fig17.3 │ │ │ ├── fig17.30 │ │ │ ├── fig17.31 │ │ │ ├── fig17.4 │ │ │ ├── fig17.5 │ │ │ ├── fig17.8 │ │ │ ├── fig17.9 │ │ │ ├── fig18.10 │ │ │ ├── fig18.11 │ │ │ ├── fig18.12 │ │ │ ├── fig18.13 │ │ │ ├── fig18.14 │ │ │ ├── fig18.15 │ │ │ ├── fig18.16 │ │ │ ├── fig18.17 │ │ │ ├── fig18.18 │ │ │ ├── fig18.20 │ │ │ ├── fig18.21 │ │ │ ├── fig18.22 │ │ │ ├── fig19.10 │ │ │ ├── fig19.11 │ │ │ ├── fig19.12 │ │ │ ├── fig19.16 │ │ │ ├── fig19.9 │ │ │ ├── fig2.13 │ │ │ ├── fig2.14 │ │ │ ├── fig2.16 │ │ │ ├── fig2.17 │ │ │ ├── fig20.3 │ │ │ ├── fig3.1 │ │ │ ├── fig3.11 │ │ │ ├── fig3.12 │ │ │ ├── fig3.2 │ │ │ ├── fig3.5 │ │ │ ├── fig4.12 │ │ │ ├── fig4.16 │ │ │ ├── fig4.21 │ │ │ ├── fig4.22 │ │ │ ├── fig4.23 │ │ │ ├── fig4.24 │ │ │ ├── fig4.25 │ │ │ ├── fig4.3 │ │ │ ├── fig4.8 │ │ │ ├── fig4.9 │ │ │ ├── fig5.11 │ │ │ ├── fig5.12 │ │ │ ├── fig5.13 │ │ │ ├── fig5.15 │ │ │ ├── fig5.4 │ │ │ ├── fig5.5 │ │ │ ├── fig6.11 │ │ │ ├── fig6.2 │ │ │ ├── fig7.1 │ │ │ ├── fig7.11 │ │ │ ├── fig7.13 │ │ │ ├── fig7.14 │ │ │ ├── fig7.16 │ │ │ ├── fig7.3 │ │ │ ├── fig7.4 │ │ │ ├── fig7.9 │ │ │ ├── fig8.1 │ │ │ ├── fig8.12 │ │ │ ├── fig8.13 │ │ │ ├── fig8.16 │ │ │ ├── fig8.17 │ │ │ ├── fig8.20 │ │ │ ├── fig8.21 │ │ │ ├── fig8.22 │ │ │ ├── fig8.23 │ │ │ ├── fig8.24 │ │ │ ├── fig8.25 │ │ │ ├── fig8.28 │ │ │ ├── fig8.29 │ │ │ ├── fig8.3 │ │ │ ├── fig8.30 │ │ │ ├── fig8.31 │ │ │ ├── fig8.5 │ │ │ ├── fig8.6 │ │ │ ├── fig8.8 │ │ │ ├── fig9.12 │ │ │ ├── figB.1 │ │ │ ├── figB.3 │ │ │ ├── figB.4 │ │ │ ├── figC.1 │ │ │ ├── figC.10 │ │ │ ├── figC.12 │ │ │ ├── figC.13 │ │ │ ├── figC.14 │ │ │ ├── figC.15 │ │ │ ├── figC.16 │ │ │ ├── figC.17 │ │ │ ├── figC.18 │ │ │ ├── figC.20 │ │ │ ├── figC.22 │ │ │ ├── figC.23 │ │ │ ├── figC.24 │ │ │ ├── figC.3 │ │ │ ├── figC.4 │ │ │ ├── figC.5 │ │ │ ├── figC.6 │ │ │ ├── figC.7 │ │ │ └── figC.8 │ │ ├── filedir │ │ │ ├── Makefile │ │ │ ├── access.c │ │ │ ├── cdpwd.c │ │ │ ├── changemod.c │ │ │ ├── devrdev.c │ │ │ ├── filetype.c │ │ │ ├── ftw8.c │ │ │ ├── mycd.c │ │ │ ├── umask.c │ │ │ ├── unlink.c │ │ │ └── zap.c │ │ ├── fileio │ │ │ ├── Makefile │ │ │ ├── fileflags.c │ │ │ ├── hole.c │ │ │ ├── mycat.c │ │ │ ├── seek.c │ │ │ └── setfl.c │ │ ├── include │ │ │ └── apue.h │ │ ├── intro │ │ │ ├── Makefile │ │ │ ├── getcputc.c │ │ │ ├── hello.c │ │ │ ├── ls1.c │ │ │ ├── mycat.c │ │ │ ├── shell1.c │ │ │ ├── shell2.c │ │ │ ├── testerror.c │ │ │ └── uidgid.c │ │ ├── ipc1 │ │ │ ├── Makefile │ │ │ ├── add2.c │ │ │ ├── add2stdio.c │ │ │ ├── devzero.c │ │ │ ├── myuclc.c │ │ │ ├── pipe1.c │ │ │ ├── pipe2.c │ │ │ ├── pipe4.c │ │ │ ├── popen.c │ │ │ ├── popen1.c │ │ │ ├── popen2.c │ │ │ ├── slock.c │ │ │ ├── slock.h │ │ │ ├── tellwait.c │ │ │ └── tshm.c │ │ ├── ipc2 │ │ │ ├── Makefile │ │ │ ├── bindunix.c │ │ │ ├── open.fe │ │ │ │ ├── Makefile │ │ │ │ ├── main.c │ │ │ │ ├── open.c │ │ │ │ └── open.h │ │ │ ├── open │ │ │ │ ├── Makefile │ │ │ │ ├── main.c │ │ │ │ ├── open.c │ │ │ │ └── open.h │ │ │ ├── opend.fe │ │ │ │ ├── Makefile │ │ │ │ ├── cliargs.c │ │ │ │ ├── main.c │ │ │ │ ├── opend.h │ │ │ │ └── request.c │ │ │ ├── opend │ │ │ │ ├── Makefile │ │ │ │ ├── cliargs.c │ │ │ │ ├── client.c │ │ │ │ ├── loop.poll.c │ │ │ │ ├── loop.select.c │ │ │ │ ├── main.c │ │ │ │ ├── opend.h │ │ │ │ └── request.c │ │ │ ├── pollmsg.c │ │ │ ├── recvfd2.c │ │ │ ├── sendfd2.c │ │ │ └── sendmsg.c │ │ ├── lib │ │ │ ├── Makefile │ │ │ ├── Orecvfd.c │ │ │ ├── bufargs.c │ │ │ ├── cliconn.c │ │ │ ├── clrfl.c │ │ │ ├── daemonize.c │ │ │ ├── error.c │ │ │ ├── errorlog.c │ │ │ ├── lockreg.c │ │ │ ├── locktest.c │ │ │ ├── nspipe.c │ │ │ ├── openmax.c │ │ │ ├── pathalloc.c │ │ │ ├── popen.c │ │ │ ├── prexit.c │ │ │ ├── prmask.c │ │ │ ├── ptyfork.c │ │ │ ├── ptyopen.c │ │ │ ├── readn.c │ │ │ ├── recvfd.c │ │ │ ├── semaph.c │ │ │ ├── senderr.c │ │ │ ├── sendfd.c │ │ │ ├── servaccept.c │ │ │ ├── servlisten.c │ │ │ ├── setfd.c │ │ │ ├── setfl.c │ │ │ ├── signal.c │ │ │ ├── signalintr.c │ │ │ ├── sleep.c │ │ │ ├── sleepus.c │ │ │ ├── spipe.c │ │ │ ├── strerror.c │ │ │ ├── tellwait.c │ │ │ ├── ttymodes.c │ │ │ └── writen.c │ │ ├── printer │ │ │ ├── Makefile │ │ │ ├── ipp.h │ │ │ ├── print.c │ │ │ ├── print.h │ │ │ ├── printd.c │ │ │ └── util.c │ │ ├── proc │ │ │ ├── Makefile │ │ │ ├── awkexample │ │ │ ├── echoall.c │ │ │ ├── exec1.c │ │ │ ├── exec2.c │ │ │ ├── fork1.c │ │ │ ├── fork2.c │ │ │ ├── nice.c │ │ │ ├── pracct.c │ │ │ ├── pruids.c │ │ │ ├── system.c │ │ │ ├── systest1.c │ │ │ ├── systest3.c │ │ │ ├── tellwait1.c │ │ │ ├── tellwait2.c │ │ │ ├── test1.c │ │ │ ├── times1.c │ │ │ ├── vfork1.c │ │ │ └── wait1.c │ │ ├── pty │ │ │ ├── Makefile │ │ │ ├── driver.c │ │ │ ├── loop.c │ │ │ └── main.c │ │ ├── relation │ │ │ ├── Makefile │ │ │ └── orphan3.c │ │ ├── signals │ │ │ ├── Makefile │ │ │ ├── abort.c │ │ │ ├── child.c │ │ │ ├── critical.c │ │ │ ├── mask.c │ │ │ ├── read1.c │ │ │ ├── read2.c │ │ │ ├── reenter.c │ │ │ ├── setops.c │ │ │ ├── sigtstp.c │ │ │ ├── sigusr.c │ │ │ ├── sleep1.c │ │ │ ├── sleep2.c │ │ │ ├── suspend1.c │ │ │ ├── suspend2.c │ │ │ ├── system.c │ │ │ ├── systest2.c │ │ │ └── tsleep2.c │ │ ├── sockets │ │ │ ├── clconn.c │ │ │ ├── clconn2.c │ │ │ ├── findsvc.c │ │ │ ├── initsrv1.c │ │ │ ├── initsrv2.c │ │ │ ├── makefile │ │ │ ├── ruptime-dg.c │ │ │ ├── ruptime.c │ │ │ ├── ruptimed-dg.c │ │ │ ├── ruptimed-fd.c │ │ │ └── ruptimed.c │ │ ├── standards │ │ │ ├── Makefile │ │ │ ├── conf.c.modified │ │ │ ├── makeconf.awk │ │ │ ├── makeopt.awk │ │ │ ├── pathconf-lim.sym │ │ │ ├── pathconf-opt.sym │ │ │ ├── sysconf-lim.sym │ │ │ └── sysconf-opt.sym │ │ ├── stdio │ │ │ ├── Makefile │ │ │ ├── buf.c │ │ │ ├── fgetsfputs.c │ │ │ ├── getcharbug.c │ │ │ ├── getcputc.c │ │ │ ├── memstr.c │ │ │ ├── mkstemp.c │ │ │ └── tempfiles.c │ │ ├── systype.sh │ │ ├── termios │ │ │ ├── Makefile │ │ │ ├── csize.c │ │ │ ├── ctermid.c │ │ │ ├── getpass.c │ │ │ ├── isatty.c │ │ │ ├── settty.c │ │ │ ├── t_getpass.c │ │ │ ├── t_isatty.c │ │ │ ├── t_raw.c │ │ │ ├── t_ttyname.c │ │ │ ├── ttyname.c │ │ │ └── winch.c │ │ ├── threadctl │ │ │ ├── Makefile │ │ │ ├── atfork.c │ │ │ ├── detach.c │ │ │ ├── getenv1.c │ │ │ ├── getenv2.c │ │ │ ├── getenv3.c │ │ │ ├── suspend.c │ │ │ └── timeout.c │ │ └── threads │ │ │ ├── Makefile │ │ │ ├── badexit2.c │ │ │ ├── barrier.c │ │ │ ├── cleanup.c │ │ │ ├── condvar.c │ │ │ ├── exitstatus.c │ │ │ ├── maketimeout.c │ │ │ ├── mutex1.c │ │ │ ├── mutex2.c │ │ │ ├── mutex3.c │ │ │ ├── rwlock.c │ │ │ ├── threadid.c │ │ │ └── timedlock.c │ ├── dir │ │ ├── a │ │ ├── a.out │ │ ├── bar │ │ ├── copy.cpp │ │ ├── dir.cpp │ │ ├── file.hole │ │ ├── foo │ │ ├── getcwd.cpp │ │ ├── link.cpp │ │ ├── stat.cpp │ │ └── umask.cpp │ ├── file │ │ ├── a │ │ ├── a.out │ │ ├── lseek.cpp │ │ ├── lseek2.cpp │ │ ├── my_dup2.cpp │ │ └── read_write.cpp │ ├── fork │ │ ├── a │ │ ├── a.out │ │ ├── compete.cpp │ │ ├── exec.cpp │ │ ├── fork.cpp │ │ ├── hello │ │ ├── hello.cpp │ │ ├── signal.cpp │ │ ├── system.cpp │ │ ├── wait.cpp │ │ └── waitpid.cpp │ ├── iostream │ │ └── setbuf.cpp │ ├── linuxC编程实战.pdf │ ├── pthread │ │ ├── a │ │ ├── pthraed_attr1.cpp │ │ ├── pthread.cpp │ │ ├── pthread_attr.cpp │ │ ├── pthread_barrier.cpp │ │ ├── pthread_cleanup.cpp │ │ ├── pthread_cond.cpp │ │ ├── pthread_exit.cpp │ │ ├── pthread_lock.cpp │ │ ├── pthread_once.cpp │ │ ├── pthread_rwlock.cpp │ │ └── pthread_sig.cpp │ ├── signal │ │ ├── a │ │ ├── a.out │ │ ├── alarm.cpp │ │ ├── set_alrm.cpp │ │ ├── sig_alarm.cpp │ │ ├── signal.cpp │ │ ├── sigpending.cpp │ │ ├── sigsuspend.cpp │ │ ├── sigsuspend2.cpp │ │ ├── sleep2.cpp │ │ └── tell.cpp │ ├── socket │ │ └── getaddrinfo.cpp │ └── unix环境高级编程习题答案.pdf ├── chated │ ├── chat │ │ ├── chat.cpp │ │ ├── chat.h │ │ ├── cli │ │ ├── client.cpp │ │ ├── debug.cpp │ │ ├── ser │ │ ├── server.cpp │ │ └── server │ │ │ ├── jack │ │ │ └── will │ ├── chat_server │ │ ├── Makefile │ │ ├── ReadMe.txt │ │ ├── chat.cpp │ │ ├── chat.h │ │ ├── client.cpp │ │ ├── pressure_test.cpp │ │ ├── server.cpp │ │ ├── threadpoll.cpp │ │ └── threadpoll.h │ └── simchat │ │ ├── Makefile │ │ ├── ReadMe.txt │ │ ├── chat.cpp │ │ ├── chat.h │ │ ├── client.cpp │ │ ├── server.cpp │ │ ├── threadpoll.cpp │ │ └── threadpoll.h ├── hello.cc ├── httpd │ ├── http │ │ ├── Makefile │ │ ├── README.md │ │ ├── htdocs │ │ │ ├── README │ │ │ ├── check.cgi │ │ │ ├── color.cgi │ │ │ └── index.html │ │ ├── httpd.c │ │ └── simpleclient.c │ ├── mproxy-http │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README.md │ │ ├── mproxy.c │ │ ├── mproxy.pac │ │ ├── switchSharp_config.png │ │ └── use_mproxy.png │ └── server_http │ │ ├── server.cpp │ │ └── server.h ├── json │ ├── Sensor.cpp │ ├── Sersor.h │ └── rapidjson │ │ ├── allocators.h │ │ ├── document.h │ │ ├── encodedstream.h │ │ ├── encodings.h │ │ ├── error │ │ ├── en.h │ │ └── error.h │ │ ├── filereadstream.h │ │ ├── filewritestream.h │ │ ├── fwd.h │ │ ├── internal │ │ ├── biginteger.h │ │ ├── diyfp.h │ │ ├── dtoa.h │ │ ├── ieee754.h │ │ ├── itoa.h │ │ ├── meta.h │ │ ├── pow10.h │ │ ├── regex.h │ │ ├── stack.h │ │ ├── strfunc.h │ │ ├── strtod.h │ │ └── swap.h │ │ ├── istreamwrapper.h │ │ ├── memorybuffer.h │ │ ├── memorystream.h │ │ ├── msinttypes │ │ ├── inttypes.h │ │ └── stdint.h │ │ ├── ostreamwrapper.h │ │ ├── pointer.h │ │ ├── prettywriter.h │ │ ├── rapidjson.h │ │ ├── reader.h │ │ ├── schema.h │ │ ├── stream.h │ │ ├── stringbuffer.h │ │ └── writer.h └── threadpoll │ ├── threadpoll.cpp │ ├── threadpoll.h │ └── threadpoll.h.gch └── x86 ├── mbr.asm ├── mbr.bin ├── mbr2.asm └── mbr7.asm /README.md: -------------------------------------------------------------------------------- 1 | # Linux 2 | Linux环境下的代码整合仓库 3 | -------------------------------------------------------------------------------- /SendImg/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/SendImg/ReadMe.txt -------------------------------------------------------------------------------- /SendImg/client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/SendImg/client/CMakeLists.txt -------------------------------------------------------------------------------- /SendImg/client/build/...: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SendImg/client/includ/Client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/SendImg/client/includ/Client.c -------------------------------------------------------------------------------- /SendImg/client/includ/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/SendImg/client/includ/Client.h -------------------------------------------------------------------------------- /SendImg/client/includ/Public.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/SendImg/client/includ/Public.c -------------------------------------------------------------------------------- /SendImg/client/includ/Public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/SendImg/client/includ/Public.h -------------------------------------------------------------------------------- /SendImg/client/src/Main_Client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/SendImg/client/src/Main_Client.c -------------------------------------------------------------------------------- /SendImg/server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/SendImg/server/CMakeLists.txt -------------------------------------------------------------------------------- /SendImg/server/build/...: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SendImg/server/includ/Public.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/SendImg/server/includ/Public.c -------------------------------------------------------------------------------- /SendImg/server/includ/Public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/SendImg/server/includ/Public.h -------------------------------------------------------------------------------- /SendImg/server/includ/Server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/SendImg/server/includ/Server.c -------------------------------------------------------------------------------- /SendImg/server/includ/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/SendImg/server/includ/Server.h -------------------------------------------------------------------------------- /SendImg/server/src/Main_Server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/SendImg/server/src/Main_Server.c -------------------------------------------------------------------------------- /a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/a -------------------------------------------------------------------------------- /c++/FreeNOS-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/c++/FreeNOS-master/.gitignore -------------------------------------------------------------------------------- /c++/FreeNOS-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/c++/FreeNOS-master/LICENSE -------------------------------------------------------------------------------- /c++/FreeNOS-master/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/c++/FreeNOS-master/README -------------------------------------------------------------------------------- /c++/FreeNOS-master/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/c++/FreeNOS-master/SConstruct -------------------------------------------------------------------------------- /c++/FreeNOS-master/VERSION: -------------------------------------------------------------------------------- 1 | 1.0.0 2 | -------------------------------------------------------------------------------- /c++/FreeNOS-master/kernel/API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/c++/FreeNOS-master/kernel/API.h -------------------------------------------------------------------------------- /c++/FreeNOS-master/kernel/FreeNOS: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /c++/FreeNOS-master/kernel/arm/raspberry2: -------------------------------------------------------------------------------- 1 | raspberry -------------------------------------------------------------------------------- /c++/FreeNOS-master/server/usb/keyboard/SConscript: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /c++/FreeNOS-master/test/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/c++/FreeNOS-master/test/Main.cpp -------------------------------------------------------------------------------- /c++/pat/001.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/c++/pat/001.cpp -------------------------------------------------------------------------------- /c++/pat/002.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/c++/pat/002.cpp -------------------------------------------------------------------------------- /c++/pat/1014.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/c++/pat/1014.cpp -------------------------------------------------------------------------------- /c++/pat/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/c++/pat/a -------------------------------------------------------------------------------- /c++/pat/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/c++/pat/a.out -------------------------------------------------------------------------------- /c++/pat/try.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/c++/pat/try.cpp -------------------------------------------------------------------------------- /chat_server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/chat_server/Makefile -------------------------------------------------------------------------------- /chat_server/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/chat_server/ReadMe.txt -------------------------------------------------------------------------------- /chat_server/chat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/chat_server/chat.cpp -------------------------------------------------------------------------------- /chat_server/chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/chat_server/chat.h -------------------------------------------------------------------------------- /chat_server/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/chat_server/client.cpp -------------------------------------------------------------------------------- /chat_server/pressure_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/chat_server/pressure_test.cpp -------------------------------------------------------------------------------- /chat_server/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/chat_server/server.cpp -------------------------------------------------------------------------------- /chat_server/threadpoll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/chat_server/threadpoll.cpp -------------------------------------------------------------------------------- /chat_server/threadpoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/chat_server/threadpoll.h -------------------------------------------------------------------------------- /evpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/CMakeLists.txt -------------------------------------------------------------------------------- /evpp/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/any.h -------------------------------------------------------------------------------- /evpp/buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/buffer.cc -------------------------------------------------------------------------------- /evpp/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/buffer.h -------------------------------------------------------------------------------- /evpp/connector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/connector.cc -------------------------------------------------------------------------------- /evpp/connector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/connector.h -------------------------------------------------------------------------------- /evpp/dns_resolver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/dns_resolver.cc -------------------------------------------------------------------------------- /evpp/dns_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/dns_resolver.h -------------------------------------------------------------------------------- /evpp/duration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/duration.cc -------------------------------------------------------------------------------- /evpp/duration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/duration.h -------------------------------------------------------------------------------- /evpp/duration.inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/duration.inl.h -------------------------------------------------------------------------------- /evpp/event_loop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/event_loop.cc -------------------------------------------------------------------------------- /evpp/event_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/event_loop.h -------------------------------------------------------------------------------- /evpp/event_loop_thread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/event_loop_thread.cc -------------------------------------------------------------------------------- /evpp/event_loop_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/event_loop_thread.h -------------------------------------------------------------------------------- /evpp/event_loop_thread_pool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/event_loop_thread_pool.cc -------------------------------------------------------------------------------- /evpp/event_loop_thread_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/event_loop_thread_pool.h -------------------------------------------------------------------------------- /evpp/event_watcher.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/event_watcher.cc -------------------------------------------------------------------------------- /evpp/event_watcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/event_watcher.h -------------------------------------------------------------------------------- /evpp/evpp_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/evpp_export.h -------------------------------------------------------------------------------- /evpp/exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/exp.h -------------------------------------------------------------------------------- /evpp/fd_channel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/fd_channel.cc -------------------------------------------------------------------------------- /evpp/fd_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/fd_channel.h -------------------------------------------------------------------------------- /evpp/gettimeofday.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/gettimeofday.h -------------------------------------------------------------------------------- /evpp/http/context.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/http/context.cc -------------------------------------------------------------------------------- /evpp/http/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/http/context.h -------------------------------------------------------------------------------- /evpp/http/http_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/http/http_server.cc -------------------------------------------------------------------------------- /evpp/http/http_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/http/http_server.h -------------------------------------------------------------------------------- /evpp/http/service.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/http/service.cc -------------------------------------------------------------------------------- /evpp/http/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/http/service.h -------------------------------------------------------------------------------- /evpp/http/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/http/stats.h -------------------------------------------------------------------------------- /evpp/httpc/conn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/httpc/conn.cc -------------------------------------------------------------------------------- /evpp/httpc/conn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/httpc/conn.h -------------------------------------------------------------------------------- /evpp/httpc/conn_pool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/httpc/conn_pool.cc -------------------------------------------------------------------------------- /evpp/httpc/conn_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/httpc/conn_pool.h -------------------------------------------------------------------------------- /evpp/httpc/request.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/httpc/request.cc -------------------------------------------------------------------------------- /evpp/httpc/request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/httpc/request.h -------------------------------------------------------------------------------- /evpp/httpc/response.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/httpc/response.cc -------------------------------------------------------------------------------- /evpp/httpc/response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/httpc/response.h -------------------------------------------------------------------------------- /evpp/httpc/url_parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/httpc/url_parser.cc -------------------------------------------------------------------------------- /evpp/httpc/url_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/httpc/url_parser.h -------------------------------------------------------------------------------- /evpp/inner_pre.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/inner_pre.cc -------------------------------------------------------------------------------- /evpp/inner_pre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/inner_pre.h -------------------------------------------------------------------------------- /evpp/invoke_timer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/invoke_timer.cc -------------------------------------------------------------------------------- /evpp/invoke_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/invoke_timer.h -------------------------------------------------------------------------------- /evpp/libevent_compact.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/libevent_compact.cc -------------------------------------------------------------------------------- /evpp/libevent_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/libevent_headers.h -------------------------------------------------------------------------------- /evpp/listener.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/listener.cc -------------------------------------------------------------------------------- /evpp/listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/listener.h -------------------------------------------------------------------------------- /evpp/log_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/log_config.h -------------------------------------------------------------------------------- /evpp/memmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/memmem.h -------------------------------------------------------------------------------- /evpp/platform_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/platform_config.h -------------------------------------------------------------------------------- /evpp/server_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/server_status.h -------------------------------------------------------------------------------- /evpp/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/slice.h -------------------------------------------------------------------------------- /evpp/sockets.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/sockets.cc -------------------------------------------------------------------------------- /evpp/sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/sockets.h -------------------------------------------------------------------------------- /evpp/sys_addrinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/sys_addrinfo.h -------------------------------------------------------------------------------- /evpp/sys_sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/sys_sockets.h -------------------------------------------------------------------------------- /evpp/tcp_callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/tcp_callbacks.h -------------------------------------------------------------------------------- /evpp/tcp_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/tcp_client.cc -------------------------------------------------------------------------------- /evpp/tcp_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/tcp_client.h -------------------------------------------------------------------------------- /evpp/tcp_conn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/tcp_conn.cc -------------------------------------------------------------------------------- /evpp/tcp_conn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/tcp_conn.h -------------------------------------------------------------------------------- /evpp/tcp_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/tcp_server.cc -------------------------------------------------------------------------------- /evpp/tcp_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/tcp_server.h -------------------------------------------------------------------------------- /evpp/thread_dispatch_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/thread_dispatch_policy.h -------------------------------------------------------------------------------- /evpp/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/timestamp.h -------------------------------------------------------------------------------- /evpp/timestamp.inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/timestamp.inl.h -------------------------------------------------------------------------------- /evpp/udp/sync_udp_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/udp/sync_udp_client.cc -------------------------------------------------------------------------------- /evpp/udp/sync_udp_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/udp/sync_udp_client.h -------------------------------------------------------------------------------- /evpp/udp/udp_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/udp/udp_message.h -------------------------------------------------------------------------------- /evpp/udp/udp_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/udp/udp_server.cc -------------------------------------------------------------------------------- /evpp/udp/udp_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/udp/udp_server.h -------------------------------------------------------------------------------- /evpp/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/evpp/utility.h -------------------------------------------------------------------------------- /hello.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/hello.cc -------------------------------------------------------------------------------- /html/Garden/Garden.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/html/Garden/Garden.html -------------------------------------------------------------------------------- /html/Garden/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/html/Garden/Thumbs.db -------------------------------------------------------------------------------- /html/Garden/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/html/Garden/default.css -------------------------------------------------------------------------------- /html/Garden/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/html/Garden/images/Thumbs.db -------------------------------------------------------------------------------- /html/Garden/images/btn_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/html/Garden/images/btn_about.png -------------------------------------------------------------------------------- /html/Garden/images/dog1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/html/Garden/images/dog1.jpeg -------------------------------------------------------------------------------- /html/Garden/images/dog2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/html/Garden/images/dog2.jpeg -------------------------------------------------------------------------------- /html/Garden/images/dog3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/html/Garden/images/dog3.jpeg -------------------------------------------------------------------------------- /html/Garden/images/dog4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/html/Garden/images/dog4.jpeg -------------------------------------------------------------------------------- /html/Garden/images/dog5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/html/Garden/images/dog5.jpeg -------------------------------------------------------------------------------- /html/Garden/images/leaves.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/html/Garden/images/leaves.jpg -------------------------------------------------------------------------------- /html/Garden/images/peaches.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/html/Garden/images/peaches.jpg -------------------------------------------------------------------------------- /laboratory/Buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/Buffer.cc -------------------------------------------------------------------------------- /laboratory/Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/Buffer.h -------------------------------------------------------------------------------- /laboratory/Channel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/Channel.cc -------------------------------------------------------------------------------- /laboratory/Channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/Channel.h -------------------------------------------------------------------------------- /laboratory/Condition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/Condition.h -------------------------------------------------------------------------------- /laboratory/CountDownLatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/CountDownLatch.h -------------------------------------------------------------------------------- /laboratory/Directory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/Directory.cc -------------------------------------------------------------------------------- /laboratory/Directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/Directory.h -------------------------------------------------------------------------------- /laboratory/Epoller.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/Epoller.cc -------------------------------------------------------------------------------- /laboratory/Epoller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/Epoller.h -------------------------------------------------------------------------------- /laboratory/EventLoop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/EventLoop.cc -------------------------------------------------------------------------------- /laboratory/EventLoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/EventLoop.h -------------------------------------------------------------------------------- /laboratory/File.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/File.cc -------------------------------------------------------------------------------- /laboratory/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/File.h -------------------------------------------------------------------------------- /laboratory/InetAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/InetAddress.h -------------------------------------------------------------------------------- /laboratory/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/Mutex.h -------------------------------------------------------------------------------- /laboratory/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/ReadMe.md -------------------------------------------------------------------------------- /laboratory/SerialPort.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/SerialPort.cc -------------------------------------------------------------------------------- /laboratory/SerialPort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/SerialPort.h -------------------------------------------------------------------------------- /laboratory/Socket.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/Socket.cc -------------------------------------------------------------------------------- /laboratory/Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/Socket.h -------------------------------------------------------------------------------- /laboratory/TaskQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/TaskQueue.h -------------------------------------------------------------------------------- /laboratory/TcpConnection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/TcpConnection.cc -------------------------------------------------------------------------------- /laboratory/TcpConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/TcpConnection.h -------------------------------------------------------------------------------- /laboratory/Thread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/Thread.cc -------------------------------------------------------------------------------- /laboratory/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/Thread.h -------------------------------------------------------------------------------- /laboratory/ThreadPool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/ThreadPool.cc -------------------------------------------------------------------------------- /laboratory/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/ThreadPool.h -------------------------------------------------------------------------------- /laboratory/TimeLoop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/TimeLoop.cc -------------------------------------------------------------------------------- /laboratory/TimeLoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/TimeLoop.h -------------------------------------------------------------------------------- /laboratory/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/Timer.h -------------------------------------------------------------------------------- /laboratory/TimerQueue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/TimerQueue.cc -------------------------------------------------------------------------------- /laboratory/TimerQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/TimerQueue.h -------------------------------------------------------------------------------- /laboratory/Timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/Timestamp.h -------------------------------------------------------------------------------- /laboratory/Typedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/Typedef.h -------------------------------------------------------------------------------- /laboratory/client/Connector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/client/Connector.cc -------------------------------------------------------------------------------- /laboratory/client/Connector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/client/Connector.h -------------------------------------------------------------------------------- /laboratory/client/TcpClient.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/client/TcpClient.cc -------------------------------------------------------------------------------- /laboratory/client/TcpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/client/TcpClient.h -------------------------------------------------------------------------------- /laboratory/rapidjson/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/rapidjson/fwd.h -------------------------------------------------------------------------------- /laboratory/rapidjson/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/rapidjson/pointer.h -------------------------------------------------------------------------------- /laboratory/rapidjson/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/rapidjson/reader.h -------------------------------------------------------------------------------- /laboratory/rapidjson/schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/rapidjson/schema.h -------------------------------------------------------------------------------- /laboratory/rapidjson/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/rapidjson/stream.h -------------------------------------------------------------------------------- /laboratory/rapidjson/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/rapidjson/writer.h -------------------------------------------------------------------------------- /laboratory/scp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/scp.sh -------------------------------------------------------------------------------- /laboratory/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/src/CMakeLists.txt -------------------------------------------------------------------------------- /laboratory/src/Client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/src/Client.cc -------------------------------------------------------------------------------- /laboratory/src/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/src/ReadMe.md -------------------------------------------------------------------------------- /laboratory/src/Server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/src/Server.cc -------------------------------------------------------------------------------- /laboratory/src/build/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 19 2 | -------------------------------------------------------------------------------- /laboratory/src/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/src/build/Makefile -------------------------------------------------------------------------------- /laboratory/src/build/client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/src/build/client -------------------------------------------------------------------------------- /laboratory/src/build/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/src/build/server -------------------------------------------------------------------------------- /laboratory/src/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/src/main.cc -------------------------------------------------------------------------------- /laboratory/test/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/test/a -------------------------------------------------------------------------------- /laboratory/test/dirtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/test/dirtest.cc -------------------------------------------------------------------------------- /laboratory/test/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/laboratory/test/test.cc -------------------------------------------------------------------------------- /libev/Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/libev/Changes -------------------------------------------------------------------------------- /libev/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/libev/LICENSE -------------------------------------------------------------------------------- /libev/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/libev/Makefile.am -------------------------------------------------------------------------------- /libev/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/libev/Makefile.in -------------------------------------------------------------------------------- /libev/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/libev/README -------------------------------------------------------------------------------- /libev/Symbols.ev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/libev/Symbols.ev -------------------------------------------------------------------------------- /libev/Symbols.event: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/libev/Symbols.event -------------------------------------------------------------------------------- /libev/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/libev/aclocal.m4 -------------------------------------------------------------------------------- /libev/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/libev/autogen.sh -------------------------------------------------------------------------------- /libev/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/libev/compile -------------------------------------------------------------------------------- /libev/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/libev/config.guess -------------------------------------------------------------------------------- /libev/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/libev/config.h.in -------------------------------------------------------------------------------- /libev/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/libev/config.sub -------------------------------------------------------------------------------- /libev/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/libev/configure -------------------------------------------------------------------------------- /libev/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/libev/configure.ac -------------------------------------------------------------------------------- /libev/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/libev/depcomp -------------------------------------------------------------------------------- /libev/ev++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/libev/ev++.h -------------------------------------------------------------------------------- /libev/ev.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/libev/ev.3 -------------------------------------------------------------------------------- /libev/ev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/libev/ev.c -------------------------------------------------------------------------------- /libev/ev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/libev/ev.h -------------------------------------------------------------------------------- /libev/ev.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/libev/ev.pod -------------------------------------------------------------------------------- /libev/ev_epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/libev/ev_epoll.c -------------------------------------------------------------------------------- /libev/ev_kqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/libev/ev_kqueue.c -------------------------------------------------------------------------------- /libev/ev_poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/libev/ev_poll.c -------------------------------------------------------------------------------- /libev/ev_port.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/libev/ev_port.c -------------------------------------------------------------------------------- /libev/ev_select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/libev/ev_select.c -------------------------------------------------------------------------------- /libev/ev_vars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/libev/ev_vars.h -------------------------------------------------------------------------------- /libev/ev_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/libev/ev_win32.c -------------------------------------------------------------------------------- /libev/ev_wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/libev/ev_wrap.h -------------------------------------------------------------------------------- /libev/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/libev/event.c -------------------------------------------------------------------------------- /libev/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/libev/event.h -------------------------------------------------------------------------------- /libev/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/libev/install-sh -------------------------------------------------------------------------------- /libev/libev.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/libev/libev.m4 -------------------------------------------------------------------------------- /libev/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/libev/ltmain.sh -------------------------------------------------------------------------------- /libev/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/libev/missing -------------------------------------------------------------------------------- /libev/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/libev/mkinstalldirs -------------------------------------------------------------------------------- /muduo/base/AsyncLogging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/AsyncLogging.cc -------------------------------------------------------------------------------- /muduo/base/AsyncLogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/AsyncLogging.h -------------------------------------------------------------------------------- /muduo/base/Atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/Atomic.h -------------------------------------------------------------------------------- /muduo/base/BlockingQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/BlockingQueue.h -------------------------------------------------------------------------------- /muduo/base/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/CMakeLists.txt -------------------------------------------------------------------------------- /muduo/base/Condition.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/Condition.cc -------------------------------------------------------------------------------- /muduo/base/Condition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/Condition.h -------------------------------------------------------------------------------- /muduo/base/CountDownLatch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/CountDownLatch.cc -------------------------------------------------------------------------------- /muduo/base/CountDownLatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/CountDownLatch.h -------------------------------------------------------------------------------- /muduo/base/CurrentThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/CurrentThread.h -------------------------------------------------------------------------------- /muduo/base/Date.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/Date.cc -------------------------------------------------------------------------------- /muduo/base/Date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/Date.h -------------------------------------------------------------------------------- /muduo/base/Exception.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/Exception.cc -------------------------------------------------------------------------------- /muduo/base/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/Exception.h -------------------------------------------------------------------------------- /muduo/base/FileUtil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/FileUtil.cc -------------------------------------------------------------------------------- /muduo/base/FileUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/FileUtil.h -------------------------------------------------------------------------------- /muduo/base/GzipFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/GzipFile.h -------------------------------------------------------------------------------- /muduo/base/LogFile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/LogFile.cc -------------------------------------------------------------------------------- /muduo/base/LogFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/LogFile.h -------------------------------------------------------------------------------- /muduo/base/LogStream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/LogStream.cc -------------------------------------------------------------------------------- /muduo/base/LogStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/LogStream.h -------------------------------------------------------------------------------- /muduo/base/Logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/Logging.cc -------------------------------------------------------------------------------- /muduo/base/Logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/Logging.h -------------------------------------------------------------------------------- /muduo/base/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/Mutex.h -------------------------------------------------------------------------------- /muduo/base/ProcessInfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/ProcessInfo.cc -------------------------------------------------------------------------------- /muduo/base/ProcessInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/ProcessInfo.h -------------------------------------------------------------------------------- /muduo/base/Singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/Singleton.h -------------------------------------------------------------------------------- /muduo/base/StringPiece.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/StringPiece.h -------------------------------------------------------------------------------- /muduo/base/Thread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/Thread.cc -------------------------------------------------------------------------------- /muduo/base/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/Thread.h -------------------------------------------------------------------------------- /muduo/base/ThreadLocal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/ThreadLocal.h -------------------------------------------------------------------------------- /muduo/base/ThreadPool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/ThreadPool.cc -------------------------------------------------------------------------------- /muduo/base/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/ThreadPool.h -------------------------------------------------------------------------------- /muduo/base/TimeZone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/TimeZone.cc -------------------------------------------------------------------------------- /muduo/base/TimeZone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/TimeZone.h -------------------------------------------------------------------------------- /muduo/base/Timestamp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/Timestamp.cc -------------------------------------------------------------------------------- /muduo/base/Timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/Timestamp.h -------------------------------------------------------------------------------- /muduo/base/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/Types.h -------------------------------------------------------------------------------- /muduo/base/WeakCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/WeakCallback.h -------------------------------------------------------------------------------- /muduo/base/copyable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/copyable.h -------------------------------------------------------------------------------- /muduo/base/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/premake4.lua -------------------------------------------------------------------------------- /muduo/base/tests/Fork_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/tests/Fork_test.cc -------------------------------------------------------------------------------- /muduo/base/tests/Mutex_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/base/tests/Mutex_test.cc -------------------------------------------------------------------------------- /muduo/net/Acceptor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/Acceptor.cc -------------------------------------------------------------------------------- /muduo/net/Acceptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/Acceptor.h -------------------------------------------------------------------------------- /muduo/net/Buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/Buffer.cc -------------------------------------------------------------------------------- /muduo/net/Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/Buffer.h -------------------------------------------------------------------------------- /muduo/net/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/CMakeLists.txt -------------------------------------------------------------------------------- /muduo/net/Callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/Callbacks.h -------------------------------------------------------------------------------- /muduo/net/Channel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/Channel.cc -------------------------------------------------------------------------------- /muduo/net/Channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/Channel.h -------------------------------------------------------------------------------- /muduo/net/Connector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/Connector.cc -------------------------------------------------------------------------------- /muduo/net/Connector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/Connector.h -------------------------------------------------------------------------------- /muduo/net/Endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/Endian.h -------------------------------------------------------------------------------- /muduo/net/EventLoop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/EventLoop.cc -------------------------------------------------------------------------------- /muduo/net/EventLoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/EventLoop.h -------------------------------------------------------------------------------- /muduo/net/EventLoopThread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/EventLoopThread.cc -------------------------------------------------------------------------------- /muduo/net/EventLoopThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/EventLoopThread.h -------------------------------------------------------------------------------- /muduo/net/InetAddress.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/InetAddress.cc -------------------------------------------------------------------------------- /muduo/net/InetAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/InetAddress.h -------------------------------------------------------------------------------- /muduo/net/Poller.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/Poller.cc -------------------------------------------------------------------------------- /muduo/net/Poller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/Poller.h -------------------------------------------------------------------------------- /muduo/net/Socket.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/Socket.cc -------------------------------------------------------------------------------- /muduo/net/Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/Socket.h -------------------------------------------------------------------------------- /muduo/net/SocketsOps.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/SocketsOps.cc -------------------------------------------------------------------------------- /muduo/net/SocketsOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/SocketsOps.h -------------------------------------------------------------------------------- /muduo/net/TcpClient.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/TcpClient.cc -------------------------------------------------------------------------------- /muduo/net/TcpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/TcpClient.h -------------------------------------------------------------------------------- /muduo/net/TcpConnection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/TcpConnection.cc -------------------------------------------------------------------------------- /muduo/net/TcpConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/TcpConnection.h -------------------------------------------------------------------------------- /muduo/net/TcpServer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/TcpServer.cc -------------------------------------------------------------------------------- /muduo/net/TcpServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/TcpServer.h -------------------------------------------------------------------------------- /muduo/net/Timer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/Timer.cc -------------------------------------------------------------------------------- /muduo/net/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/Timer.h -------------------------------------------------------------------------------- /muduo/net/TimerId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/TimerId.h -------------------------------------------------------------------------------- /muduo/net/TimerQueue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/TimerQueue.cc -------------------------------------------------------------------------------- /muduo/net/TimerQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/TimerQueue.h -------------------------------------------------------------------------------- /muduo/net/ZlibStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/ZlibStream.h -------------------------------------------------------------------------------- /muduo/net/boilerplate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/boilerplate.cc -------------------------------------------------------------------------------- /muduo/net/boilerplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/boilerplate.h -------------------------------------------------------------------------------- /muduo/net/http/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/http/CMakeLists.txt -------------------------------------------------------------------------------- /muduo/net/http/HttpContext.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/http/HttpContext.cc -------------------------------------------------------------------------------- /muduo/net/http/HttpContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/http/HttpContext.h -------------------------------------------------------------------------------- /muduo/net/http/HttpRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/http/HttpRequest.h -------------------------------------------------------------------------------- /muduo/net/http/HttpResponse.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/http/HttpResponse.cc -------------------------------------------------------------------------------- /muduo/net/http/HttpResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/http/HttpResponse.h -------------------------------------------------------------------------------- /muduo/net/http/HttpServer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/http/HttpServer.cc -------------------------------------------------------------------------------- /muduo/net/http/HttpServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/http/HttpServer.h -------------------------------------------------------------------------------- /muduo/net/inspect/Inspector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/inspect/Inspector.cc -------------------------------------------------------------------------------- /muduo/net/inspect/Inspector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/inspect/Inspector.h -------------------------------------------------------------------------------- /muduo/net/poller/EPollPoller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/poller/EPollPoller.h -------------------------------------------------------------------------------- /muduo/net/poller/PollPoller.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/poller/PollPoller.cc -------------------------------------------------------------------------------- /muduo/net/poller/PollPoller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/poller/PollPoller.h -------------------------------------------------------------------------------- /muduo/net/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/premake4.lua -------------------------------------------------------------------------------- /muduo/net/protorpc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/protorpc/README -------------------------------------------------------------------------------- /muduo/net/protorpc/RpcCodec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/protorpc/RpcCodec.cc -------------------------------------------------------------------------------- /muduo/net/protorpc/RpcCodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/protorpc/RpcCodec.h -------------------------------------------------------------------------------- /muduo/net/protorpc/RpcServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/protorpc/RpcServer.h -------------------------------------------------------------------------------- /muduo/net/protorpc/rpc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/protorpc/rpc.proto -------------------------------------------------------------------------------- /muduo/net/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/muduo/net/tests/CMakeLists.txt -------------------------------------------------------------------------------- /opencv/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/opencv/CMakeLists.txt -------------------------------------------------------------------------------- /opencv/addWidget.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/opencv/addWidget.cc -------------------------------------------------------------------------------- /opencv/alpha.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/opencv/alpha.cc -------------------------------------------------------------------------------- /opencv/build/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/opencv/build/CMakeCache.txt -------------------------------------------------------------------------------- /opencv/build/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /opencv/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/opencv/build/Makefile -------------------------------------------------------------------------------- /opencv/build/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/opencv/build/a -------------------------------------------------------------------------------- /opencv/circle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/opencv/circle.cc -------------------------------------------------------------------------------- /opencv/clock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/opencv/clock.cc -------------------------------------------------------------------------------- /opencv/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/opencv/test.cc -------------------------------------------------------------------------------- /python/1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/python/1.py -------------------------------------------------------------------------------- /python/3/test1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/python/3/test1.py -------------------------------------------------------------------------------- /python/3/test2.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /python/3/test3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/python/3/test3.py -------------------------------------------------------------------------------- /python/4/test1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/python/4/test1.py -------------------------------------------------------------------------------- /python/4/test2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/python/4/test2.py -------------------------------------------------------------------------------- /python/4/test3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/python/4/test3.py -------------------------------------------------------------------------------- /python/4/test4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/python/4/test4.py -------------------------------------------------------------------------------- /python/4/test5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/python/4/test5.py -------------------------------------------------------------------------------- /python/4/test6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/python/4/test6.py -------------------------------------------------------------------------------- /python/4/test7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/python/4/test7.py -------------------------------------------------------------------------------- /python/6/calss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/python/6/calss.py -------------------------------------------------------------------------------- /python/6/test1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/python/6/test1.py -------------------------------------------------------------------------------- /python/9/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/python/9/test.py -------------------------------------------------------------------------------- /python/freenote/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/python/freenote/README -------------------------------------------------------------------------------- /python/freenote/bin/source.txt: -------------------------------------------------------------------------------- 1 | 合肥明天的天气怎么样? -------------------------------------------------------------------------------- /python/freenote/include/qisr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/python/freenote/include/qisr.h -------------------------------------------------------------------------------- /python/freenote/include/qtts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/python/freenote/include/qtts.h -------------------------------------------------------------------------------- /python/regex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/python/regex.py -------------------------------------------------------------------------------- /python/urllib/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/python/urllib/url.py -------------------------------------------------------------------------------- /sdn/SDN基础题.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/sdn/SDN基础题.pdf -------------------------------------------------------------------------------- /sdn/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/sdn/simple.py -------------------------------------------------------------------------------- /simchat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/simchat/Makefile -------------------------------------------------------------------------------- /simchat/chat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/simchat/chat.cpp -------------------------------------------------------------------------------- /simchat/chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/simchat/chat.h -------------------------------------------------------------------------------- /simchat/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/simchat/client.cpp -------------------------------------------------------------------------------- /simchat/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/simchat/server.cpp -------------------------------------------------------------------------------- /smartCarClient/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/smartCarClient/CMakeLists.txt -------------------------------------------------------------------------------- /smartCarClient/Client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/smartCarClient/Client.cc -------------------------------------------------------------------------------- /smartCarClient/File.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/smartCarClient/File.cc -------------------------------------------------------------------------------- /smartCarClient/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/smartCarClient/File.h -------------------------------------------------------------------------------- /smartCarClient/InetAddress.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/smartCarClient/InetAddress.cc -------------------------------------------------------------------------------- /smartCarClient/InetAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/smartCarClient/InetAddress.h -------------------------------------------------------------------------------- /smartCarClient/Mutex.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/smartCarClient/Mutex.cc -------------------------------------------------------------------------------- /smartCarClient/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/smartCarClient/Mutex.h -------------------------------------------------------------------------------- /smartCarClient/Socket.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/smartCarClient/Socket.cc -------------------------------------------------------------------------------- /smartCarClient/Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/smartCarClient/Socket.h -------------------------------------------------------------------------------- /smartCarClient/build/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /smartCarClient/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/smartCarClient/build/Makefile -------------------------------------------------------------------------------- /smartCarClient/build/client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/smartCarClient/build/client -------------------------------------------------------------------------------- /smartCarClient/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/smartCarClient/error.h -------------------------------------------------------------------------------- /smartCarClient/i18nText.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/smartCarClient/i18nText.cc -------------------------------------------------------------------------------- /smartCarClient/i18nText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/smartCarClient/i18nText.h -------------------------------------------------------------------------------- /smartCarClient/lzo_supp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/smartCarClient/lzo_supp.h -------------------------------------------------------------------------------- /smartCarClient/portab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/smartCarClient/portab.h -------------------------------------------------------------------------------- /smartCarClient/portab_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/smartCarClient/portab_a.h -------------------------------------------------------------------------------- /smartCarServer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/smartCarServer/CMakeLists.txt -------------------------------------------------------------------------------- /smartCarServer/File.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/smartCarServer/File.cc -------------------------------------------------------------------------------- /smartCarServer/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/smartCarServer/File.h -------------------------------------------------------------------------------- /smartCarServer/HandleEvent.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/smartCarServer/HandleEvent.cc -------------------------------------------------------------------------------- /smartCarServer/HandleEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/smartCarServer/HandleEvent.h -------------------------------------------------------------------------------- /smartCarServer/InetAddress.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/smartCarServer/InetAddress.cc -------------------------------------------------------------------------------- /smartCarServer/InetAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/smartCarServer/InetAddress.h -------------------------------------------------------------------------------- /smartCarServer/Mutex.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/smartCarServer/Mutex.cc -------------------------------------------------------------------------------- /smartCarServer/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/smartCarServer/Mutex.h -------------------------------------------------------------------------------- /smartCarServer/Server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/smartCarServer/Server.cc -------------------------------------------------------------------------------- /smartCarServer/Socket.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/smartCarServer/Socket.cc -------------------------------------------------------------------------------- /smartCarServer/Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/smartCarServer/Socket.h -------------------------------------------------------------------------------- /smartCarServer/Thread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/smartCarServer/Thread.cc -------------------------------------------------------------------------------- /smartCarServer/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/smartCarServer/Thread.h -------------------------------------------------------------------------------- /smartCarServer/build/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /smartCarServer/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/smartCarServer/build/Makefile -------------------------------------------------------------------------------- /smartCarServer/build/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/smartCarServer/build/server -------------------------------------------------------------------------------- /smartCarServer/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/smartCarServer/error.h -------------------------------------------------------------------------------- /smartCarServer/lzo_supp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/smartCarServer/lzo_supp.h -------------------------------------------------------------------------------- /smartCarServer/portab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/smartCarServer/portab.h -------------------------------------------------------------------------------- /smartCarServer/portab_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/smartCarServer/portab_a.h -------------------------------------------------------------------------------- /split.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/split.cc -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/_file_.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/_file_.asm -------------------------------------------------------------------------------- /test/_version.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/_version.asm -------------------------------------------------------------------------------- /test/a32offs.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/a32offs.asm -------------------------------------------------------------------------------- /test/absolute.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/absolute.asm -------------------------------------------------------------------------------- /test/addr64x.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/addr64x.asm -------------------------------------------------------------------------------- /test/align13.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/align13.asm -------------------------------------------------------------------------------- /test/align13s.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/align13s.asm -------------------------------------------------------------------------------- /test/alonesym-obj.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/alonesym-obj.asm -------------------------------------------------------------------------------- /test/andbyte.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/andbyte.asm -------------------------------------------------------------------------------- /test/aoutso.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/aoutso.asm -------------------------------------------------------------------------------- /test/aouttest.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/aouttest.asm -------------------------------------------------------------------------------- /test/aouttest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/aouttest.c -------------------------------------------------------------------------------- /test/avx.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/avx.asm -------------------------------------------------------------------------------- /test/avx005.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/avx005.asm -------------------------------------------------------------------------------- /test/avx2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/avx2.asm -------------------------------------------------------------------------------- /test/avx512cd.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/avx512cd.asm -------------------------------------------------------------------------------- /test/avx512er.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/avx512er.asm -------------------------------------------------------------------------------- /test/avx512f.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/avx512f.asm -------------------------------------------------------------------------------- /test/avx512pf.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/avx512pf.asm -------------------------------------------------------------------------------- /test/bcd.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/bcd.asm -------------------------------------------------------------------------------- /test/binexe.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/binexe.asm -------------------------------------------------------------------------------- /test/bintest.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/bintest.asm -------------------------------------------------------------------------------- /test/bisect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/bisect.sh -------------------------------------------------------------------------------- /test/br1879590.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/br1879590.asm -------------------------------------------------------------------------------- /test/br2003451.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/br2003451.asm -------------------------------------------------------------------------------- /test/br2030823.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/br2030823.asm -------------------------------------------------------------------------------- /test/br2148476.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/br2148476.asm -------------------------------------------------------------------------------- /test/br2222615.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/br2222615.asm -------------------------------------------------------------------------------- /test/br2496848.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/br2496848.asm -------------------------------------------------------------------------------- /test/br3005117.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/br3005117.asm -------------------------------------------------------------------------------- /test/br3026808.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/br3026808.asm -------------------------------------------------------------------------------- /test/br3028880.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/br3028880.asm -------------------------------------------------------------------------------- /test/br3041451.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/br3041451.asm -------------------------------------------------------------------------------- /test/br3058845.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/br3058845.asm -------------------------------------------------------------------------------- /test/br3066383.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/br3066383.asm -------------------------------------------------------------------------------- /test/br3074517.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/br3074517.asm -------------------------------------------------------------------------------- /test/br3092924.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/br3092924.asm -------------------------------------------------------------------------------- /test/br3104312.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/br3104312.asm -------------------------------------------------------------------------------- /test/br3109604.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/br3109604.asm -------------------------------------------------------------------------------- /test/br3174983.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/br3174983.asm -------------------------------------------------------------------------------- /test/br3187743.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/br3187743.asm -------------------------------------------------------------------------------- /test/br3189064.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/br3189064.asm -------------------------------------------------------------------------------- /test/br3200749.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/br3200749.asm -------------------------------------------------------------------------------- /test/br3385573.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/br3385573.asm -------------------------------------------------------------------------------- /test/br3392252.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/br3392252.asm -------------------------------------------------------------------------------- /test/br3392259.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/br3392259.asm -------------------------------------------------------------------------------- /test/br560575.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/br560575.asm -------------------------------------------------------------------------------- /test/br560873.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/br560873.asm -------------------------------------------------------------------------------- /test/br890790.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/br890790.asm -------------------------------------------------------------------------------- /test/br890790_i.asm: -------------------------------------------------------------------------------- 1 | db 2 2 | -------------------------------------------------------------------------------- /test/br978756.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/br978756.asm -------------------------------------------------------------------------------- /test/changed.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/changed.asm -------------------------------------------------------------------------------- /test/cofftest.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/cofftest.asm -------------------------------------------------------------------------------- /test/cofftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/cofftest.c -------------------------------------------------------------------------------- /test/crc32.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/crc32.asm -------------------------------------------------------------------------------- /test/dtbcd.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/dtbcd.asm -------------------------------------------------------------------------------- /test/elf64so.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/elf64so.asm -------------------------------------------------------------------------------- /test/elfso.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/elfso.asm -------------------------------------------------------------------------------- /test/elftest.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/elftest.asm -------------------------------------------------------------------------------- /test/elftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/elftest.c -------------------------------------------------------------------------------- /test/elftest64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/elftest64.c -------------------------------------------------------------------------------- /test/elif.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/elif.asm -------------------------------------------------------------------------------- /test/expimp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/expimp.asm -------------------------------------------------------------------------------- /test/far64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/far64.asm -------------------------------------------------------------------------------- /test/float.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/float.asm -------------------------------------------------------------------------------- /test/float8.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/float8.asm -------------------------------------------------------------------------------- /test/floatb.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/floatb.asm -------------------------------------------------------------------------------- /test/floatexp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/floatexp.asm -------------------------------------------------------------------------------- /test/floatize.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/floatize.asm -------------------------------------------------------------------------------- /test/floattest.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/floattest.asm -------------------------------------------------------------------------------- /test/floatx.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/floatx.asm -------------------------------------------------------------------------------- /test/fpu.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/fpu.asm -------------------------------------------------------------------------------- /test/fwdopt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/fwdopt.asm -------------------------------------------------------------------------------- /test/fwdoptpp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/fwdoptpp.asm -------------------------------------------------------------------------------- /test/gas2nasm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/gas2nasm.py -------------------------------------------------------------------------------- /test/gather.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/gather.asm -------------------------------------------------------------------------------- /test/gotoff64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/gotoff64.asm -------------------------------------------------------------------------------- /test/hle.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/hle.asm -------------------------------------------------------------------------------- /test/ifelse.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/ifelse.asm -------------------------------------------------------------------------------- /test/ifenv.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/ifenv.asm -------------------------------------------------------------------------------- /test/ifmacro.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/ifmacro.asm -------------------------------------------------------------------------------- /test/iftoken.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/iftoken.asm -------------------------------------------------------------------------------- /test/iftoken.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/iftoken.pl -------------------------------------------------------------------------------- /test/ilog2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/ilog2.asm -------------------------------------------------------------------------------- /test/imacro.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/imacro.asm -------------------------------------------------------------------------------- /test/imm64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/imm64.asm -------------------------------------------------------------------------------- /test/immwarn.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/immwarn.asm -------------------------------------------------------------------------------- /test/imul.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/imul.asm -------------------------------------------------------------------------------- /test/inc1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/inc1.asm -------------------------------------------------------------------------------- /test/inc2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/inc2.asm -------------------------------------------------------------------------------- /test/inctest.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/inctest.asm -------------------------------------------------------------------------------- /test/insnlbl.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/insnlbl.asm -------------------------------------------------------------------------------- /test/invlpga.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/invlpga.asm -------------------------------------------------------------------------------- /test/jmp64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/jmp64.asm -------------------------------------------------------------------------------- /test/lar_lsl.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/lar_lsl.asm -------------------------------------------------------------------------------- /test/larlsl.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/larlsl.asm -------------------------------------------------------------------------------- /test/lnxhello.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/lnxhello.asm -------------------------------------------------------------------------------- /test/local.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/local.asm -------------------------------------------------------------------------------- /test/loopoffs.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/loopoffs.asm -------------------------------------------------------------------------------- /test/lwp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/lwp.asm -------------------------------------------------------------------------------- /test/macro-defaults.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/macro-defaults.asm -------------------------------------------------------------------------------- /test/mmxsize.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/mmxsize.asm -------------------------------------------------------------------------------- /test/movd.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/movd.asm -------------------------------------------------------------------------------- /test/movd64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/movd64.asm -------------------------------------------------------------------------------- /test/movimm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/movimm.asm -------------------------------------------------------------------------------- /test/movnti.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/movnti.asm -------------------------------------------------------------------------------- /test/mpx-64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/mpx-64.asm -------------------------------------------------------------------------------- /test/mpx.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/mpx.asm -------------------------------------------------------------------------------- /test/multisection.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/multisection.asm -------------------------------------------------------------------------------- /test/nasmformat.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/nasmformat.asm -------------------------------------------------------------------------------- /test/new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/new -------------------------------------------------------------------------------- /test/newrdwr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/newrdwr.asm -------------------------------------------------------------------------------- /test/nop.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/nop.asm -------------------------------------------------------------------------------- /test/nullfile.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/nullfile.asm -------------------------------------------------------------------------------- /test/objexe.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/objexe.asm -------------------------------------------------------------------------------- /test/objlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/objlink.c -------------------------------------------------------------------------------- /test/objtest.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/objtest.asm -------------------------------------------------------------------------------- /test/optimization.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/optimization.asm -------------------------------------------------------------------------------- /test/org.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/org.asm -------------------------------------------------------------------------------- /test/paste.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/paste.asm -------------------------------------------------------------------------------- /test/perf/label.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/perf/label.pl -------------------------------------------------------------------------------- /test/perf/macro.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/perf/macro.pl -------------------------------------------------------------------------------- /test/perf/token.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/perf/token.pl -------------------------------------------------------------------------------- /test/performtest.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/performtest.pl -------------------------------------------------------------------------------- /test/pinsr16.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/pinsr16.asm -------------------------------------------------------------------------------- /test/pinsr32.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/pinsr32.asm -------------------------------------------------------------------------------- /test/pinsr64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/pinsr64.asm -------------------------------------------------------------------------------- /test/popcnt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/popcnt.asm -------------------------------------------------------------------------------- /test/ppindirect.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/ppindirect.asm -------------------------------------------------------------------------------- /test/prefix66.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/prefix66.asm -------------------------------------------------------------------------------- /test/pushseg.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/pushseg.asm -------------------------------------------------------------------------------- /test/r13.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/r13.asm -------------------------------------------------------------------------------- /test/radix.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/radix.asm -------------------------------------------------------------------------------- /test/relocs.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/relocs.asm -------------------------------------------------------------------------------- /test/riprel.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/riprel.asm -------------------------------------------------------------------------------- /test/riprel.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/riprel.pl -------------------------------------------------------------------------------- /test/riprel2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/riprel2.asm -------------------------------------------------------------------------------- /test/sha-64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/sha-64.asm -------------------------------------------------------------------------------- /test/sha.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/sha.asm -------------------------------------------------------------------------------- /test/smartalign16.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/smartalign16.asm -------------------------------------------------------------------------------- /test/smartalign32.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/smartalign32.asm -------------------------------------------------------------------------------- /test/smartalign64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/smartalign64.asm -------------------------------------------------------------------------------- /test/splitea.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/splitea.asm -------------------------------------------------------------------------------- /test/sreg.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/sreg.asm -------------------------------------------------------------------------------- /test/strlen.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/strlen.asm -------------------------------------------------------------------------------- /test/struc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/struc.asm -------------------------------------------------------------------------------- /test/test67.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/test67.asm -------------------------------------------------------------------------------- /test/testdos.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/testdos.asm -------------------------------------------------------------------------------- /test/testnos3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/testnos3.asm -------------------------------------------------------------------------------- /test/time.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/time.asm -------------------------------------------------------------------------------- /test/times.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/times.asm -------------------------------------------------------------------------------- /test/tmap.nas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/tmap.nas -------------------------------------------------------------------------------- /test/uscore.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/uscore.asm -------------------------------------------------------------------------------- /test/utf.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/utf.asm -------------------------------------------------------------------------------- /test/vex.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/vex.asm -------------------------------------------------------------------------------- /test/vgather.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/vgather.asm -------------------------------------------------------------------------------- /test/vmread.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/vmread.asm -------------------------------------------------------------------------------- /test/weirdpaste.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/weirdpaste.asm -------------------------------------------------------------------------------- /test/xchg.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/xchg.asm -------------------------------------------------------------------------------- /test/xcrypt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/xcrypt.asm -------------------------------------------------------------------------------- /test/xmm0.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/xmm0.asm -------------------------------------------------------------------------------- /test/zerobyte.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/test/zerobyte.asm -------------------------------------------------------------------------------- /uftp/Buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/Buffer.cc -------------------------------------------------------------------------------- /uftp/Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/Buffer.h -------------------------------------------------------------------------------- /uftp/Channel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/Channel.cc -------------------------------------------------------------------------------- /uftp/Channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/Channel.h -------------------------------------------------------------------------------- /uftp/Condition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/Condition.h -------------------------------------------------------------------------------- /uftp/CountDownLatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/CountDownLatch.h -------------------------------------------------------------------------------- /uftp/Directory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/Directory.cc -------------------------------------------------------------------------------- /uftp/Directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/Directory.h -------------------------------------------------------------------------------- /uftp/Epoller.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/Epoller.cc -------------------------------------------------------------------------------- /uftp/Epoller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/Epoller.h -------------------------------------------------------------------------------- /uftp/EventLoop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/EventLoop.cc -------------------------------------------------------------------------------- /uftp/EventLoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/EventLoop.h -------------------------------------------------------------------------------- /uftp/File.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/File.cc -------------------------------------------------------------------------------- /uftp/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/File.h -------------------------------------------------------------------------------- /uftp/InetAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/InetAddress.h -------------------------------------------------------------------------------- /uftp/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/Mutex.h -------------------------------------------------------------------------------- /uftp/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/ReadMe.md -------------------------------------------------------------------------------- /uftp/Socket.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/Socket.cc -------------------------------------------------------------------------------- /uftp/Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/Socket.h -------------------------------------------------------------------------------- /uftp/TaskQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/TaskQueue.h -------------------------------------------------------------------------------- /uftp/TcpConnection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/TcpConnection.cc -------------------------------------------------------------------------------- /uftp/TcpConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/TcpConnection.h -------------------------------------------------------------------------------- /uftp/Thread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/Thread.cc -------------------------------------------------------------------------------- /uftp/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/Thread.h -------------------------------------------------------------------------------- /uftp/ThreadPool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/ThreadPool.cc -------------------------------------------------------------------------------- /uftp/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/ThreadPool.h -------------------------------------------------------------------------------- /uftp/TimeLoop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/TimeLoop.cc -------------------------------------------------------------------------------- /uftp/TimeLoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/TimeLoop.h -------------------------------------------------------------------------------- /uftp/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/Timer.h -------------------------------------------------------------------------------- /uftp/TimerQueue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/TimerQueue.cc -------------------------------------------------------------------------------- /uftp/TimerQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/TimerQueue.h -------------------------------------------------------------------------------- /uftp/Timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/Timestamp.h -------------------------------------------------------------------------------- /uftp/Typedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/Typedef.h -------------------------------------------------------------------------------- /uftp/client/AsyncEventLoop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/client/AsyncEventLoop.cc -------------------------------------------------------------------------------- /uftp/client/AsyncEventLoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/client/AsyncEventLoop.h -------------------------------------------------------------------------------- /uftp/client/Connector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/client/Connector.cc -------------------------------------------------------------------------------- /uftp/client/Connector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/client/Connector.h -------------------------------------------------------------------------------- /uftp/client/ConnectorThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/client/ConnectorThread.h -------------------------------------------------------------------------------- /uftp/client/TcpClient.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/client/TcpClient.cc -------------------------------------------------------------------------------- /uftp/client/TcpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/client/TcpClient.h -------------------------------------------------------------------------------- /uftp/mutilServer/Current.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/mutilServer/Current.cc -------------------------------------------------------------------------------- /uftp/mutilServer/Current.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/mutilServer/Current.h -------------------------------------------------------------------------------- /uftp/rapidjson/allocators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/rapidjson/allocators.h -------------------------------------------------------------------------------- /uftp/rapidjson/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/rapidjson/document.h -------------------------------------------------------------------------------- /uftp/rapidjson/encodedstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/rapidjson/encodedstream.h -------------------------------------------------------------------------------- /uftp/rapidjson/encodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/rapidjson/encodings.h -------------------------------------------------------------------------------- /uftp/rapidjson/error/en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/rapidjson/error/en.h -------------------------------------------------------------------------------- /uftp/rapidjson/error/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/rapidjson/error/error.h -------------------------------------------------------------------------------- /uftp/rapidjson/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/rapidjson/fwd.h -------------------------------------------------------------------------------- /uftp/rapidjson/internal/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/rapidjson/internal/dtoa.h -------------------------------------------------------------------------------- /uftp/rapidjson/internal/itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/rapidjson/internal/itoa.h -------------------------------------------------------------------------------- /uftp/rapidjson/internal/meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/rapidjson/internal/meta.h -------------------------------------------------------------------------------- /uftp/rapidjson/internal/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/rapidjson/internal/swap.h -------------------------------------------------------------------------------- /uftp/rapidjson/memorybuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/rapidjson/memorybuffer.h -------------------------------------------------------------------------------- /uftp/rapidjson/memorystream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/rapidjson/memorystream.h -------------------------------------------------------------------------------- /uftp/rapidjson/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/rapidjson/pointer.h -------------------------------------------------------------------------------- /uftp/rapidjson/prettywriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/rapidjson/prettywriter.h -------------------------------------------------------------------------------- /uftp/rapidjson/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/rapidjson/rapidjson.h -------------------------------------------------------------------------------- /uftp/rapidjson/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/rapidjson/reader.h -------------------------------------------------------------------------------- /uftp/rapidjson/schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/rapidjson/schema.h -------------------------------------------------------------------------------- /uftp/rapidjson/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/rapidjson/stream.h -------------------------------------------------------------------------------- /uftp/rapidjson/stringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/rapidjson/stringbuffer.h -------------------------------------------------------------------------------- /uftp/rapidjson/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/rapidjson/writer.h -------------------------------------------------------------------------------- /uftp/scp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/scp.sh -------------------------------------------------------------------------------- /uftp/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/src/CMakeLists.txt -------------------------------------------------------------------------------- /uftp/src/Client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/src/Client.cc -------------------------------------------------------------------------------- /uftp/src/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/src/ReadMe.md -------------------------------------------------------------------------------- /uftp/src/Server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/src/Server.cc -------------------------------------------------------------------------------- /uftp/src/build/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/src/build/CMakeCache.txt -------------------------------------------------------------------------------- /uftp/src/build/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 22 2 | -------------------------------------------------------------------------------- /uftp/src/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/src/build/Makefile -------------------------------------------------------------------------------- /uftp/src/build/client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/src/build/client -------------------------------------------------------------------------------- /uftp/src/build/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/src/build/server -------------------------------------------------------------------------------- /uftp/src/stillAlive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/src/stillAlive.sh -------------------------------------------------------------------------------- /uftp/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/test.cc -------------------------------------------------------------------------------- /uftp/test/FileTest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/test/FileTest.cc -------------------------------------------------------------------------------- /uftp/test/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/test/a -------------------------------------------------------------------------------- /uftp/test/dirtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/test/dirtest.cc -------------------------------------------------------------------------------- /uftp/test/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/test/test.cc -------------------------------------------------------------------------------- /uftp/weather.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/uftp/weather.csv -------------------------------------------------------------------------------- /unix/SendImg/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/SendImg/ReadMe.txt -------------------------------------------------------------------------------- /unix/apue/apue.3e/DISCLAIMER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/DISCLAIMER -------------------------------------------------------------------------------- /unix/apue/apue.3e/Make.libapue.inc: -------------------------------------------------------------------------------- 1 | $(LIBAPUE): 2 | (cd $(ROOT)/lib && $(MAKE)) 3 | -------------------------------------------------------------------------------- /unix/apue/apue.3e/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/Makefile -------------------------------------------------------------------------------- /unix/apue/apue.3e/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/README -------------------------------------------------------------------------------- /unix/apue/apue.3e/db/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/db/Makefile -------------------------------------------------------------------------------- /unix/apue/apue.3e/db/apue_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/db/apue_db.h -------------------------------------------------------------------------------- /unix/apue/apue.3e/db/db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/db/db.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/db/t4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/db/t4.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/error.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig1.10: -------------------------------------------------------------------------------- 1 | ../intro/shell2.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig1.3: -------------------------------------------------------------------------------- 1 | ../intro/ls1.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig1.4: -------------------------------------------------------------------------------- 1 | ../intro/mycat.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig1.5: -------------------------------------------------------------------------------- 1 | ../intro/getcputc.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig1.6: -------------------------------------------------------------------------------- 1 | ../intro/hello.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig1.7: -------------------------------------------------------------------------------- 1 | ../intro/shell1.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig1.8: -------------------------------------------------------------------------------- 1 | ../intro/testerror.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig1.9: -------------------------------------------------------------------------------- 1 | ../intro/uidgid.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig10.10: -------------------------------------------------------------------------------- 1 | ../signals/read1.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig10.11: -------------------------------------------------------------------------------- 1 | ../signals/read2.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig10.12: -------------------------------------------------------------------------------- 1 | ../signals/setops.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig10.14: -------------------------------------------------------------------------------- 1 | ../lib/prmask.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig10.15: -------------------------------------------------------------------------------- 1 | ../signals/critical.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig10.18: -------------------------------------------------------------------------------- 1 | ../lib/signal.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig10.19: -------------------------------------------------------------------------------- 1 | ../lib/signalintr.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig10.2: -------------------------------------------------------------------------------- 1 | ../signals/sigusr.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig10.20: -------------------------------------------------------------------------------- 1 | ../signals/mask.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig10.22: -------------------------------------------------------------------------------- 1 | ../signals/suspend1.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig10.23: -------------------------------------------------------------------------------- 1 | ../signals/suspend2.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig10.24: -------------------------------------------------------------------------------- 1 | ../lib/tellwait.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig10.25: -------------------------------------------------------------------------------- 1 | ../signals/abort.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig10.26: -------------------------------------------------------------------------------- 1 | ../signals/systest2.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig10.28: -------------------------------------------------------------------------------- 1 | ../signals/system.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig10.29: -------------------------------------------------------------------------------- 1 | ../lib/sleep.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig10.31: -------------------------------------------------------------------------------- 1 | ../signals/sigtstp.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig10.5: -------------------------------------------------------------------------------- 1 | ../signals/reenter.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig10.6: -------------------------------------------------------------------------------- 1 | ../signals/child.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig10.7: -------------------------------------------------------------------------------- 1 | ../signals/sleep1.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig10.8: -------------------------------------------------------------------------------- 1 | ../signals/sleep2.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig10.9: -------------------------------------------------------------------------------- 1 | ../signals/tsleep2.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig11.10: -------------------------------------------------------------------------------- 1 | ../threads/mutex1.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig11.11: -------------------------------------------------------------------------------- 1 | ../threads/mutex2.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig11.12: -------------------------------------------------------------------------------- 1 | ../threads/mutex3.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig11.14: -------------------------------------------------------------------------------- 1 | ../threads/rwlock.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig11.15: -------------------------------------------------------------------------------- 1 | ../threads/condvar.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig11.16: -------------------------------------------------------------------------------- 1 | ../threads/barrier.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig11.2: -------------------------------------------------------------------------------- 1 | ../threads/threadid.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig11.3: -------------------------------------------------------------------------------- 1 | ../threads/exitstatus.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig11.4: -------------------------------------------------------------------------------- 1 | ../threads/badexit2.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig11.5: -------------------------------------------------------------------------------- 1 | ../threads/cleanup.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig12.11: -------------------------------------------------------------------------------- 1 | ../threadctl/getenv1.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig12.12: -------------------------------------------------------------------------------- 1 | ../threadctl/getenv2.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig12.13: -------------------------------------------------------------------------------- 1 | ../threadctl/getenv3.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig12.16: -------------------------------------------------------------------------------- 1 | ../threadctl/suspend.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig12.17: -------------------------------------------------------------------------------- 1 | ../threadctl/atfork.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig12.4: -------------------------------------------------------------------------------- 1 | ../threadctl/detach.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig12.8: -------------------------------------------------------------------------------- 1 | ../threadctl/timeout.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig13.1: -------------------------------------------------------------------------------- 1 | ../daemons/init.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig13.6: -------------------------------------------------------------------------------- 1 | ../daemons/single.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig13.7: -------------------------------------------------------------------------------- 1 | ../daemons/reread.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig13.8: -------------------------------------------------------------------------------- 1 | ../daemons/reread2.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig13.9: -------------------------------------------------------------------------------- 1 | ../lib/setfd.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig14.1: -------------------------------------------------------------------------------- 1 | ../advio/nonblockw.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig14.12: -------------------------------------------------------------------------------- 1 | ../advio/mandatory.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig14.20: -------------------------------------------------------------------------------- 1 | ../advio/rot13a.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig14.21: -------------------------------------------------------------------------------- 1 | ../advio/rot13c2.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig14.24: -------------------------------------------------------------------------------- 1 | ../advio/writen.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig14.27: -------------------------------------------------------------------------------- 1 | ../advio/mcopy2.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig14.5: -------------------------------------------------------------------------------- 1 | ../lib/lockreg.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig14.6: -------------------------------------------------------------------------------- 1 | ../lib/locktest.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig14.7: -------------------------------------------------------------------------------- 1 | ../advio/deadlock.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig14.9: -------------------------------------------------------------------------------- 1 | ../advio/lockfile.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig15.11: -------------------------------------------------------------------------------- 1 | ../ipc1/popen2.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig15.12: -------------------------------------------------------------------------------- 1 | ../ipc1/popen.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig15.14: -------------------------------------------------------------------------------- 1 | ../ipc1/myuclc.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig15.15: -------------------------------------------------------------------------------- 1 | ../ipc1/popen1.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig15.17: -------------------------------------------------------------------------------- 1 | ../ipc1/add2.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig15.18: -------------------------------------------------------------------------------- 1 | ../ipc1/pipe4.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig15.19: -------------------------------------------------------------------------------- 1 | ../ipc1/add2stdio.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig15.31: -------------------------------------------------------------------------------- 1 | ../ipc1/tshm.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig15.33: -------------------------------------------------------------------------------- 1 | ../ipc1/devzero.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig15.35: -------------------------------------------------------------------------------- 1 | ../ipc1/slock.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig15.5: -------------------------------------------------------------------------------- 1 | ../ipc1/pipe1.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig15.6: -------------------------------------------------------------------------------- 1 | ../ipc1/pipe2.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig15.7: -------------------------------------------------------------------------------- 1 | ../ipc1/tellwait.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig16.10: -------------------------------------------------------------------------------- 1 | ../sockets/clconn.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig16.11: -------------------------------------------------------------------------------- 1 | ../sockets/clconn2.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig16.12: -------------------------------------------------------------------------------- 1 | ../sockets/initsrv1.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig16.16: -------------------------------------------------------------------------------- 1 | ../sockets/ruptime.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig16.17: -------------------------------------------------------------------------------- 1 | ../sockets/ruptimed.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig16.18: -------------------------------------------------------------------------------- 1 | ../sockets/ruptimed-fd.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig16.19: -------------------------------------------------------------------------------- 1 | ../sockets/ruptime-dg.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig16.20: -------------------------------------------------------------------------------- 1 | ../sockets/ruptimed-dg.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig16.22: -------------------------------------------------------------------------------- 1 | ../sockets/initsrv2.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig16.9: -------------------------------------------------------------------------------- 1 | ../sockets/findsvc.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig17.10: -------------------------------------------------------------------------------- 1 | ../lib/cliconn.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig17.12: -------------------------------------------------------------------------------- 1 | ../lib/senderr.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig17.13: -------------------------------------------------------------------------------- 1 | ../lib/sendfd.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig17.14: -------------------------------------------------------------------------------- 1 | ../lib/recvfd.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig17.15: -------------------------------------------------------------------------------- 1 | ../ipc2/sendfd2.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig17.16: -------------------------------------------------------------------------------- 1 | ../ipc2/recvfd2.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig17.17: -------------------------------------------------------------------------------- 1 | ../ipc2/open.fe/open.h -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig17.18: -------------------------------------------------------------------------------- 1 | ../ipc2/open.fe/main.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig17.19: -------------------------------------------------------------------------------- 1 | ../ipc2/open.fe/open.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig17.2: -------------------------------------------------------------------------------- 1 | ../lib/spipe.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig17.20: -------------------------------------------------------------------------------- 1 | ../ipc2/opend.fe/opend.h -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig17.21: -------------------------------------------------------------------------------- 1 | ../ipc2/opend.fe/main.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig17.22: -------------------------------------------------------------------------------- 1 | ../ipc2/opend.fe/request.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig17.23: -------------------------------------------------------------------------------- 1 | ../lib/bufargs.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig17.24: -------------------------------------------------------------------------------- 1 | ../ipc2/opend.fe/cliargs.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig17.25: -------------------------------------------------------------------------------- 1 | ../ipc2/open/open.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig17.26: -------------------------------------------------------------------------------- 1 | ../ipc2/opend/opend.h -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig17.27: -------------------------------------------------------------------------------- 1 | ../ipc2/opend/client.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig17.28: -------------------------------------------------------------------------------- 1 | ../ipc2/opend/main.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig17.29: -------------------------------------------------------------------------------- 1 | ../ipc2/opend/loop.select.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig17.3: -------------------------------------------------------------------------------- 1 | ../ipc2/pollmsg.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig17.30: -------------------------------------------------------------------------------- 1 | ../ipc2/opend/loop.poll.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig17.31: -------------------------------------------------------------------------------- 1 | ../ipc2/opend/request.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig17.4: -------------------------------------------------------------------------------- 1 | ../ipc2/sendmsg.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig17.5: -------------------------------------------------------------------------------- 1 | ../ipc2/bindunix.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig17.8: -------------------------------------------------------------------------------- 1 | ../lib/servlisten.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig17.9: -------------------------------------------------------------------------------- 1 | ../lib/servaccept.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig18.10: -------------------------------------------------------------------------------- 1 | ../termios/settty.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig18.11: -------------------------------------------------------------------------------- 1 | ../termios/csize.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig18.12: -------------------------------------------------------------------------------- 1 | ../termios/ctermid.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig18.13: -------------------------------------------------------------------------------- 1 | ../termios/isatty.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig18.14: -------------------------------------------------------------------------------- 1 | ../termios/t_isatty.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig18.15: -------------------------------------------------------------------------------- 1 | ../termios/ttyname.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig18.16: -------------------------------------------------------------------------------- 1 | ../termios/t_ttyname.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig18.17: -------------------------------------------------------------------------------- 1 | ../termios/getpass.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig18.18: -------------------------------------------------------------------------------- 1 | ../termios/t_getpass.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig18.20: -------------------------------------------------------------------------------- 1 | ../lib/ttymodes.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig18.21: -------------------------------------------------------------------------------- 1 | ../termios/t_raw.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig18.22: -------------------------------------------------------------------------------- 1 | ../termios/winch.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig19.10: -------------------------------------------------------------------------------- 1 | ../lib/ptyfork.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig19.11: -------------------------------------------------------------------------------- 1 | ../pty/main.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig19.12: -------------------------------------------------------------------------------- 1 | ../pty/loop.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig19.16: -------------------------------------------------------------------------------- 1 | ../pty/driver.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig19.9: -------------------------------------------------------------------------------- 1 | ../lib/ptyopen.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig2.13: -------------------------------------------------------------------------------- 1 | ../standards/makeconf.awk -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig2.14: -------------------------------------------------------------------------------- 1 | ../standards/conf.c.modified -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig2.16: -------------------------------------------------------------------------------- 1 | ../lib/pathalloc.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig2.17: -------------------------------------------------------------------------------- 1 | ../lib/openmax.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig20.3: -------------------------------------------------------------------------------- 1 | ../db/t4.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig3.1: -------------------------------------------------------------------------------- 1 | ../fileio/seek.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig3.11: -------------------------------------------------------------------------------- 1 | ../fileio/fileflags.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig3.12: -------------------------------------------------------------------------------- 1 | ../fileio/setfl.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig3.2: -------------------------------------------------------------------------------- 1 | ../fileio/hole.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig3.5: -------------------------------------------------------------------------------- 1 | ../fileio/mycat.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig4.12: -------------------------------------------------------------------------------- 1 | ../filedir/changemod.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig4.16: -------------------------------------------------------------------------------- 1 | ../filedir/unlink.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig4.21: -------------------------------------------------------------------------------- 1 | ../filedir/zap.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig4.22: -------------------------------------------------------------------------------- 1 | ../filedir/ftw8.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig4.23: -------------------------------------------------------------------------------- 1 | ../filedir/mycd.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig4.24: -------------------------------------------------------------------------------- 1 | ../filedir/cdpwd.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig4.25: -------------------------------------------------------------------------------- 1 | ../filedir/devrdev.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig4.3: -------------------------------------------------------------------------------- 1 | ../filedir/filetype.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig4.8: -------------------------------------------------------------------------------- 1 | ../filedir/access.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig4.9: -------------------------------------------------------------------------------- 1 | ../filedir/umask.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig5.11: -------------------------------------------------------------------------------- 1 | ../stdio/buf.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig5.12: -------------------------------------------------------------------------------- 1 | ../stdio/tempfiles.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig5.13: -------------------------------------------------------------------------------- 1 | ../stdio/mkstemp.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig5.15: -------------------------------------------------------------------------------- 1 | ../stdio/memstr.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig5.4: -------------------------------------------------------------------------------- 1 | ../stdio/getcputc.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig5.5: -------------------------------------------------------------------------------- 1 | ../stdio/fgetsfputs.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig6.11: -------------------------------------------------------------------------------- 1 | ../datafiles/strftime.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig6.2: -------------------------------------------------------------------------------- 1 | ../datafiles/getpwnam.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig7.1: -------------------------------------------------------------------------------- 1 | ../environ/hello1.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig7.11: -------------------------------------------------------------------------------- 1 | ../environ/cmd2.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig7.13: -------------------------------------------------------------------------------- 1 | ../environ/testjmp.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig7.14: -------------------------------------------------------------------------------- 1 | ../environ/opendata.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig7.16: -------------------------------------------------------------------------------- 1 | ../environ/getrlimit.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig7.3: -------------------------------------------------------------------------------- 1 | ../environ/doatexit.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig7.4: -------------------------------------------------------------------------------- 1 | ../environ/echoarg.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig7.9: -------------------------------------------------------------------------------- 1 | ../environ/cmd1.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig8.1: -------------------------------------------------------------------------------- 1 | ../proc/fork1.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig8.12: -------------------------------------------------------------------------------- 1 | ../proc/tellwait1.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig8.13: -------------------------------------------------------------------------------- 1 | ../proc/tellwait2.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig8.16: -------------------------------------------------------------------------------- 1 | ../proc/exec1.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig8.17: -------------------------------------------------------------------------------- 1 | ../proc/echoall.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig8.20: -------------------------------------------------------------------------------- 1 | ../proc/exec2.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig8.21: -------------------------------------------------------------------------------- 1 | ../proc/awkexample -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig8.22: -------------------------------------------------------------------------------- 1 | ../proc/system.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig8.23: -------------------------------------------------------------------------------- 1 | ../proc/systest1.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig8.24: -------------------------------------------------------------------------------- 1 | ../proc/systest3.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig8.25: -------------------------------------------------------------------------------- 1 | ../proc/pruids.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig8.28: -------------------------------------------------------------------------------- 1 | ../proc/test1.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig8.29: -------------------------------------------------------------------------------- 1 | ../proc/pracct.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig8.3: -------------------------------------------------------------------------------- 1 | ../proc/vfork1.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig8.30: -------------------------------------------------------------------------------- 1 | ../proc/nice.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig8.31: -------------------------------------------------------------------------------- 1 | ../proc/times1.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig8.5: -------------------------------------------------------------------------------- 1 | ../lib/prexit.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig8.6: -------------------------------------------------------------------------------- 1 | ../proc/wait1.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig8.8: -------------------------------------------------------------------------------- 1 | ../proc/fork2.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/fig9.12: -------------------------------------------------------------------------------- 1 | ../relation/orphan3.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/figB.1: -------------------------------------------------------------------------------- 1 | ../include/apue.h -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/figB.3: -------------------------------------------------------------------------------- 1 | ../lib/error.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/figB.4: -------------------------------------------------------------------------------- 1 | ../lib/errorlog.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/figC.1: -------------------------------------------------------------------------------- 1 | ../exercises/openmax.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/figC.10: -------------------------------------------------------------------------------- 1 | ../exercises/zombie.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/figC.12: -------------------------------------------------------------------------------- 1 | ../exercises/goodexit.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/figC.13: -------------------------------------------------------------------------------- 1 | ../exercises/sleep.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/figC.14: -------------------------------------------------------------------------------- 1 | ../exercises/getlogin.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/figC.15: -------------------------------------------------------------------------------- 1 | ../exercises/pendlock.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/figC.16: -------------------------------------------------------------------------------- 1 | ../exercises/sleepus_select.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/figC.17: -------------------------------------------------------------------------------- 1 | ../exercises/sleepus_poll.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/figC.18: -------------------------------------------------------------------------------- 1 | ../exercises/sizepipe.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/figC.20: -------------------------------------------------------------------------------- 1 | ../exercises/fifo1.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/figC.22: -------------------------------------------------------------------------------- 1 | ../exercises/bo.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/figC.23: -------------------------------------------------------------------------------- 1 | ../exercises/asyncsocket.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/figC.24: -------------------------------------------------------------------------------- 1 | ../exercises/pollmsg2.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/figC.3: -------------------------------------------------------------------------------- 1 | ../exercises/longpath.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/figC.4: -------------------------------------------------------------------------------- 1 | ../exercises/fmemopen.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/figC.5: -------------------------------------------------------------------------------- 1 | ../exercises/getpwsvr4.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/figC.6: -------------------------------------------------------------------------------- 1 | ../exercises/getpw44bsd.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/figC.7: -------------------------------------------------------------------------------- 1 | ../exercises/prtime.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/figlinks/figC.8: -------------------------------------------------------------------------------- 1 | ../exercises/vfork3.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/intro/ls1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/intro/ls1.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/ipc1/add2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/ipc1/add2.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/ipc1/pipe1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/ipc1/pipe1.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/ipc1/pipe2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/ipc1/pipe2.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/ipc1/pipe4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/ipc1/pipe4.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/ipc1/popen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/ipc1/popen.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/ipc1/slock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/ipc1/slock.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/ipc1/slock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/ipc1/slock.h -------------------------------------------------------------------------------- /unix/apue/apue.3e/ipc1/tshm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/ipc1/tshm.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/lib/Makefile -------------------------------------------------------------------------------- /unix/apue/apue.3e/lib/clrfl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/lib/clrfl.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/lib/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/lib/error.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/lib/nspipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/lib/nspipe.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/lib/popen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/lib/popen.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/lib/prexit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/lib/prexit.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/lib/prmask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/lib/prmask.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/lib/readn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/lib/readn.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/lib/recvfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/lib/recvfd.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/lib/semaph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/lib/semaph.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/lib/sendfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/lib/sendfd.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/lib/setfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/lib/setfd.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/lib/setfl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/lib/setfl.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/lib/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/lib/signal.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/lib/sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/lib/sleep.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/lib/spipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/lib/spipe.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/lib/writen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/lib/writen.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/proc/exec1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/proc/exec1.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/proc/exec2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/proc/exec2.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/proc/fork1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/proc/fork1.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/proc/fork2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/proc/fork2.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/proc/nice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/proc/nice.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/proc/test1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/proc/test1.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/proc/wait1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/proc/wait1.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/pty/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/pty/Makefile -------------------------------------------------------------------------------- /unix/apue/apue.3e/pty/driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/pty/driver.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/pty/loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/pty/loop.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/pty/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/pty/main.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/stdio/buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/stdio/buf.c -------------------------------------------------------------------------------- /unix/apue/apue.3e/systype.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/apue.3e/systype.sh -------------------------------------------------------------------------------- /unix/apue/dir/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/dir/a -------------------------------------------------------------------------------- /unix/apue/dir/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/dir/a.out -------------------------------------------------------------------------------- /unix/apue/dir/bar: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unix/apue/dir/copy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/dir/copy.cpp -------------------------------------------------------------------------------- /unix/apue/dir/dir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/dir/dir.cpp -------------------------------------------------------------------------------- /unix/apue/dir/file.hole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/dir/file.hole -------------------------------------------------------------------------------- /unix/apue/dir/foo: -------------------------------------------------------------------------------- 1 | asdfghjkl 2 | -------------------------------------------------------------------------------- /unix/apue/dir/getcwd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/dir/getcwd.cpp -------------------------------------------------------------------------------- /unix/apue/dir/link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/dir/link.cpp -------------------------------------------------------------------------------- /unix/apue/dir/stat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/dir/stat.cpp -------------------------------------------------------------------------------- /unix/apue/dir/umask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/dir/umask.cpp -------------------------------------------------------------------------------- /unix/apue/file/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/file/a -------------------------------------------------------------------------------- /unix/apue/file/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/file/a.out -------------------------------------------------------------------------------- /unix/apue/file/lseek.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/file/lseek.cpp -------------------------------------------------------------------------------- /unix/apue/file/lseek2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/file/lseek2.cpp -------------------------------------------------------------------------------- /unix/apue/file/my_dup2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/file/my_dup2.cpp -------------------------------------------------------------------------------- /unix/apue/file/read_write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/file/read_write.cpp -------------------------------------------------------------------------------- /unix/apue/fork/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/fork/a -------------------------------------------------------------------------------- /unix/apue/fork/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/fork/a.out -------------------------------------------------------------------------------- /unix/apue/fork/compete.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/fork/compete.cpp -------------------------------------------------------------------------------- /unix/apue/fork/exec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/fork/exec.cpp -------------------------------------------------------------------------------- /unix/apue/fork/fork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/fork/fork.cpp -------------------------------------------------------------------------------- /unix/apue/fork/hello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/fork/hello -------------------------------------------------------------------------------- /unix/apue/fork/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/fork/hello.cpp -------------------------------------------------------------------------------- /unix/apue/fork/signal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/fork/signal.cpp -------------------------------------------------------------------------------- /unix/apue/fork/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/fork/system.cpp -------------------------------------------------------------------------------- /unix/apue/fork/wait.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/fork/wait.cpp -------------------------------------------------------------------------------- /unix/apue/fork/waitpid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/fork/waitpid.cpp -------------------------------------------------------------------------------- /unix/apue/iostream/setbuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/iostream/setbuf.cpp -------------------------------------------------------------------------------- /unix/apue/linuxC编程实战.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/linuxC编程实战.pdf -------------------------------------------------------------------------------- /unix/apue/pthread/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/pthread/a -------------------------------------------------------------------------------- /unix/apue/pthread/pthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/pthread/pthread.cpp -------------------------------------------------------------------------------- /unix/apue/signal/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/signal/a -------------------------------------------------------------------------------- /unix/apue/signal/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/signal/a.out -------------------------------------------------------------------------------- /unix/apue/signal/alarm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/signal/alarm.cpp -------------------------------------------------------------------------------- /unix/apue/signal/set_alrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/signal/set_alrm.cpp -------------------------------------------------------------------------------- /unix/apue/signal/sig_alarm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/signal/sig_alarm.cpp -------------------------------------------------------------------------------- /unix/apue/signal/signal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/signal/signal.cpp -------------------------------------------------------------------------------- /unix/apue/signal/sleep2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/signal/sleep2.cpp -------------------------------------------------------------------------------- /unix/apue/signal/tell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/signal/tell.cpp -------------------------------------------------------------------------------- /unix/apue/unix环境高级编程习题答案.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/apue/unix环境高级编程习题答案.pdf -------------------------------------------------------------------------------- /unix/chated/chat/chat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/chated/chat/chat.cpp -------------------------------------------------------------------------------- /unix/chated/chat/chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/chated/chat/chat.h -------------------------------------------------------------------------------- /unix/chated/chat/cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/chated/chat/cli -------------------------------------------------------------------------------- /unix/chated/chat/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/chated/chat/client.cpp -------------------------------------------------------------------------------- /unix/chated/chat/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/chated/chat/debug.cpp -------------------------------------------------------------------------------- /unix/chated/chat/ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/chated/chat/ser -------------------------------------------------------------------------------- /unix/chated/chat/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/chated/chat/server.cpp -------------------------------------------------------------------------------- /unix/chated/chat/server/jack: -------------------------------------------------------------------------------- 1 | jack 2 | 342100 3 | 4 | -------------------------------------------------------------------------------- /unix/chated/chat/server/will: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/chated/chat/server/will -------------------------------------------------------------------------------- /unix/chated/chat_server/chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/chated/chat_server/chat.h -------------------------------------------------------------------------------- /unix/chated/simchat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/chated/simchat/Makefile -------------------------------------------------------------------------------- /unix/chated/simchat/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/chated/simchat/ReadMe.txt -------------------------------------------------------------------------------- /unix/chated/simchat/chat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/chated/simchat/chat.cpp -------------------------------------------------------------------------------- /unix/chated/simchat/chat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/chated/simchat/chat.h -------------------------------------------------------------------------------- /unix/chated/simchat/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/chated/simchat/client.cpp -------------------------------------------------------------------------------- /unix/chated/simchat/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/chated/simchat/server.cpp -------------------------------------------------------------------------------- /unix/hello.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/hello.cc -------------------------------------------------------------------------------- /unix/httpd/http/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/httpd/http/Makefile -------------------------------------------------------------------------------- /unix/httpd/http/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/httpd/http/README.md -------------------------------------------------------------------------------- /unix/httpd/http/htdocs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/httpd/http/htdocs/README -------------------------------------------------------------------------------- /unix/httpd/http/httpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/httpd/http/httpd.c -------------------------------------------------------------------------------- /unix/httpd/http/simpleclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/httpd/http/simpleclient.c -------------------------------------------------------------------------------- /unix/httpd/mproxy-http/.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | -------------------------------------------------------------------------------- /unix/json/Sensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/json/Sensor.cpp -------------------------------------------------------------------------------- /unix/json/Sersor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/json/Sersor.h -------------------------------------------------------------------------------- /unix/json/rapidjson/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/json/rapidjson/document.h -------------------------------------------------------------------------------- /unix/json/rapidjson/error/en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/json/rapidjson/error/en.h -------------------------------------------------------------------------------- /unix/json/rapidjson/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/json/rapidjson/fwd.h -------------------------------------------------------------------------------- /unix/json/rapidjson/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/json/rapidjson/pointer.h -------------------------------------------------------------------------------- /unix/json/rapidjson/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/json/rapidjson/reader.h -------------------------------------------------------------------------------- /unix/json/rapidjson/schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/json/rapidjson/schema.h -------------------------------------------------------------------------------- /unix/json/rapidjson/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/json/rapidjson/stream.h -------------------------------------------------------------------------------- /unix/json/rapidjson/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/json/rapidjson/writer.h -------------------------------------------------------------------------------- /unix/threadpoll/threadpoll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/threadpoll/threadpoll.cpp -------------------------------------------------------------------------------- /unix/threadpoll/threadpoll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/unix/threadpoll/threadpoll.h -------------------------------------------------------------------------------- /x86/mbr.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/x86/mbr.asm -------------------------------------------------------------------------------- /x86/mbr.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/x86/mbr.bin -------------------------------------------------------------------------------- /x86/mbr2.asm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /x86/mbr7.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uufree/Linux/HEAD/x86/mbr7.asm --------------------------------------------------------------------------------