资源列表
tty.c.tar
- 多线程来处理串口的收发处理!终端io函数的使用方法。-Multi-threading to handle serial transceivers processing! Terminal io functions are used.
cppCallC
- 在linux开发环境下的C++调用C的方法示例程序-In the linux development environment for C++ method of calling C sample programs
readfile.tar
- 读取文件,将文件中所有的内容一次性写入内存.减少IO读取次数-write all the contents of file to memory at once
memory_use
- 享内存函数简单应与建立共享内存的进程没有同步关系,如果进程建立共享内存后,在退出前不调用shmctl-mem
r8180_pm
- Power management interface routines.
data
- 编写一程序,实现程序a通过读取一个文件,把文件内容写入一个有名管道.然后程序b读取有名管道的内容,重新写为一个新的文件。-Write a program, the program by reading a file, the contents of the file is written to a named pipe. Program then b to read the contents of the named pipe, re-written as a new file.
gcm_reset
- GCM implementation, reset a used state so it can accept IV data,.
rest_python.tar
- regularly remind yourself a break under linux gadget python.
regress-137181
- delete arguments[i] should break connection to local reference.
nfs3_fs
- NFSv3-specific filesystem definitions and declarations.
nrf-51822-dfu
- nrf 51822 生成dfu文件的windows 批处理代码-nrf 51822 生成dfu文件的windows 批处理代码 Windows batch processing code to generate DFU files
1
- 例:用筛选法求2~100之间的所有素数。 解:我们用下面的方法来解这题:先建立一个含有2~100之间所有自然数的数表,在数表中删去2的倍数(不包括2);然后找2后面第一个被保留的数p(是3),再删除p的倍数(不包括p);然后再找下一个被保留的数(是5),继续上述步骤:这样继续下去,直至P大于100为止。这样数表中剩下的数就是所要求的所有素数。这个求素数的方法称为爱拉托散(Eratosthenes)法。 -Example: Method 2 with the screening of al