This commit is contained in:
secXsQuared 2016-07-23 17:54:54 -07:00
parent 03d3d4ab70
commit e797cc29c2
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,15 @@
#ifndef _K_REF_H_
#define _K_REF_H_
#include "avl_tree.h"
typedef struct
{
avl_tree_node_t* tree_node;
void* ref_ptr;
uint32_t ref_count;
} k_ref_;
void k_ref();
#endif

2
x64/src/kernel/k_ref.c Normal file
View File

@ -0,0 +1,2 @@
#include "k_ref.h"