This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"_cpcompat.py": { | |
"code": [ | |
"Base64" | |
], | |
"comment": [ | |
"Python" | |
], | |
"all": [ | |
"Base64" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<file path="/Volumes/HappyPecanDisk/repos/minix-src/servers/ext2/balloc.c"> | |
<content> | |
<text><![CDATA[/* This files manages blocks allocation and deallocation. | |
* | |
* The entry points into this file are: | |
* discard_preallocated_blocks: Discard preallocated blocks. | |
* alloc_block: somebody wants to allocate a block; find one. | |
* free_block: indicate that a block is available for new allocation. | |
* | |
* Created: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"adlist.c": [ | |
"linked", | |
"list" | |
], | |
"adlist.h": [ | |
"list" | |
], | |
"bitops.c": [ | |
"bit" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"adlist.c": [ | |
"linked" | |
], | |
"adlist.h": [ | |
"linked", | |
"list" | |
], | |
"redis-cli.c": [ | |
"command" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"adlist.c": [ | |
"linked", | |
"list" | |
], | |
"adlist.h": [ | |
"linked", | |
"list" | |
], | |
"bitops.c": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"adlist.c": [ | |
"linked" | |
], | |
"adlist.h": [ | |
"linked", | |
"list" | |
], | |
"redis-cli.c": [ | |
"command" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"adlist.c": [ | |
"linked", | |
"list" | |
], | |
"adlist.h": [ | |
"list" | |
], | |
"ae.c": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class User | |
attr_reader :name | |
def initialize(name) | |
@name = name | |
end | |
def say_my_name | |
puts @name | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <nanomsg/nn.h> | |
#include <nanomsg/pair.h> | |
#include <stdio.h> | |
int main() { | |
int s = nn_socket(AF_SP, NN_PAIR); | |
int nbytes; | |
char ch; | |
char str[100]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* The kernel call implemented in this file: | |
* m_type: SYS_FORK | |
* | |
* The parameters for this kernel call are: | |
* m1_i1: PR_ENDPT (parent, process that forked) | |
* m1_i2: PR_SLOT (child's process table slot) | |
* m1_p1: PR_MEM_PTR (new memory map for the child) | |
* m1_i3: PR_FORK_FLAGS (fork flags) | |
*/ |