瀏覽代碼

corrected bug in RLS (freeing virtual subscriptions problem)

Vaclav Kubart 20 年之前
父節點
當前提交
792165d764
共有 2 個文件被更改,包括 2 次插入2 次删除
  1. 1 1
      lib/cds/ptr_vector.c
  2. 1 1
      lib/cds/ptr_vector.h

+ 1 - 1
lib/cds/ptr_vector.c

@@ -23,7 +23,7 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#include "ptr_vector.h"
+#include <cds/ptr_vector.h>
 #include <stdio.h>
 
 int ptr_vector_add(ptr_vector_t *vector, void *ptr)

+ 1 - 1
lib/cds/ptr_vector.h

@@ -26,7 +26,7 @@
 #ifndef __PTR_VECTOR_H
 #define __PTR_VECTOR_H
 
-#include "vector.h"
+#include <cds/vector.h>
 
 typedef vector_t ptr_vector_t;