https://github.com/joede/libezV24

https://github.com/ysei/siriusSparcV8

https://github.com/omniti-labs/svr42pkgsrc

https://github.com/Sunshine-OS/svr4-dev

https://github.com/Sunshine-OS/svr4-userland

https://github.com/Sunshine-OS/pkg-gate

https://github.com/OS2World/DEV-MISC-GNU_m4

https://github.com/ArchC/sparc

https://github.com/shoyos420/Sparcv8

https://github.com/SparcV8/SparcV8

https://github.com/cgutierr3z/sparcv8-monocycle

https://github.com/grgbr/qemu-sparcv8

https://github.com/Shipaaaa/DebugMonitor

https://github.com/adhuliya/sparcv8-ajit

https://github.com/carriercomm/qemu-tcg-sparcv8plus

https://github.com/Rajmohan/UnixV6

https://github.com/ngn999/UNIX-System-V

https://github.com/Ngoguey42/proj20_unix_lem-ipc

https://github.com/huangguiyang/UnixV6-CC

https://github.com/us8945/Unix_v6_filesystem

https://github.com/ie925155/unix-file-system-v6

https://github.com/iamjy/unix_v6

https://github.com/zhangchi8620/vShell

https://github.com/WarlockD/arm-cortex-v7-unix

https://github.com/geocar/ed-v6

https://github.com/Murii/mu-version-control-system

https://github.com/bcsefercik/virtual-memory-and-file-system

https://github.com/strook/wine-dev-x86_64

https://github.com/dybiszb/NetworkScrabble

https://github.com/cwru-eecs338/smokers

https://github.com/bmarcot/vega

https://github.com/tomm1990/Video-Control-for-A-Smart-Home-Environment

https://github.com/djarosz/vsftpd

https://github.com/ppciarravano/volatile-bulletin-board

https://github.com/SOYJUN/Application-with-raw-IP-sockets

https://github.com/tallpants/vtu-usp-lab

https://github.com/Ngoguey42/proj01_algo_libft

https://github.com/thisisnotabug/libftui

sunos kernel src leakrs的更多相关文章

  1. sunos kernel src

    https://github.com/eocallaghan/AuroraUX-SunOS https://github.com/zoyanhui/coroutine-libtask https:// ...

  2. 关于kernel-devel、kernel-header和kernel src的区别

    A kernel-header package would contain 'header files' needed by some applications which would be buil ...

  3. Linux ARM kernel Makefile and Kconfig

    kernel build:顶层Makefile:-->1. include build/main.mk    -->2. include build/kernel.mk         k ...

  4. andriod Kernel configuration is invalid

    error:  ERROR: Kernel configuration is invalid.         include/generated/autoconf.h or include/conf ...

  5. Linux Kernel的Makefile与Kconfig文件的语法

    https://www.kernel.org/doc/Documentation/kbuild/kconfig-language.txt Introduction ------------ The c ...

  6. linux driver error ------ 编译驱动出现 ERROR: Kernel configuration is invalid

       ERROR: Kernel configuration is invalid.         include/generated/autoconf.h or include/config/au ...

  7. Linux Kernel Makefiles Kbuild en

    来自Linux kernel docs,顺便整理了一下排版 Linux Kernel Makefiles This document describes the Linux kernel Makefi ...

  8. seL4之hello-3征途

    seL4之hello-3征途 回顾上周 了解seL4的启动流程和初始化线程 了解seL4的几种内核对象和权能机制 完成hell0-2的运行. 补充上周 1.找到根任务(初始化线程)的创建具体的位置(那 ...

  9. linux内核的makefile.txt讲解

    linux内核的linux-3.6.5\Documentation\kbuild\makefiles.txt Linux Kernel Makefiles This document describe ...

随机推荐

  1. BZOJ4771 七彩树(dfs序+树上差分+主席树)

    考虑没有深度限制怎么做.显然的做法是直接转成dfs序上主席树,但如果拓展到二维变成矩形数颜色数肯定没法做到一个log. 另一种做法是利用树上差分.对于同种颜色的点,在每个点处+1,dfs序相邻点的lc ...

  2. P2420 让我们异或吧

    题目描述 异或是一种神奇的运算,大部分人把它总结成不进位加法. 在生活中…xor运算也很常见.比如,对于一个问题的回答,是为1,否为0.那么: (A是否是男生 )xor( B是否是男生)=A和B是否能 ...

  3. hadoop 使用map合并小文件到SequenceFile

    上一例是直接用SequenceFile的createWriter来实现,本例采用mapreduce的方式. 1.把小文件整体读入需要自定义InputFormat格式,自定义InputFormat格式需 ...

  4. [luogu5176] 公约数

    题目描述 求 \[ \sum_{i=1}^n\sum_{j=1}^m\sum_{k=1}^p\gcd(i\cdot j,i\cdot k,j\cdot k)\times \gcd(i,j,k)\tim ...

  5. [洛谷P5107]能量采集

    题目大意:有一张$n(n\leqslant50)$个点$m(m\leqslant n(n-1))$条边的有向图,每个点还有一个自环,每个点有一个权值.每一秒钟,每个点的权值会等分成出边个数,流向出边. ...

  6. 参考《Java疯狂讲义》

    参考<Java疯狂讲义>Lambda表达式支持将代码块作为方法参数,Lambda表达式允许使用更简洁的代码来创建只有一个抽象方法的接口(这种接口被称为函数式接口)的实例 1. Lambda ...

  7. AOJ.866 飞越原野 (三维BFS)

    AOJ.866 飞越原野 (三维BFS) 题意分析 点我挑战题目 相比于普通的BFS,要多一维来记录当前剩余的体力.而且还要额外的一层循环来处理,飞过的路程. 代码总览 #include <io ...

  8. 51nod 1217 Minimum Modular(数论+暴力)

    根据抽屉原理显然m>=(n-K) 于是在[n-K,max(a1..an)+1]的范围中枚举m 考虑K=0的做法... 如果a[i]≡a[j](mod m),则有m|(a[i]-a[j]),只要O ...

  9. 【图论】Floyd消圈算法

    毫无卵用的百度百科 Definition&Solution 对于一个给定的链表,如何判定它是否存在环以及环的长度问题,可以使用Floyd消圈算法求出. 从某种意义上来讲,带环的链表在本质上是一 ...

  10. kafka 命令笔记

    以下命令都是在kafka根目录下 启动自带的zookeeper bin/zookeeper-server-start.sh config/zookeeper.properties 启动kafka(启动 ...