* Just use the heap instead of cbuf for send_data().

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33722 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2009-10-22 11:42:51 +00:00
parent 4bee71c211
commit 68d9d8809b
2 changed files with 14 additions and 16 deletions
+3 -3
View File
@@ -1,5 +1,5 @@
/*
* Copyright 2004-2008, Haiku Inc.
* Copyright 2004-2009, Haiku Inc.
* Distributed under the terms of the MIT License.
*
* Thread definition and structures
@@ -7,9 +7,9 @@
#ifndef _KERNEL_THREAD_TYPES_H
#define _KERNEL_THREAD_TYPES_H
#ifndef _ASSEMBLER
#include <cbuf.h>
#include <smp.h>
#include <signal.h>
#include <thread_defs.h>
@@ -274,7 +274,7 @@ struct thread {
thread_id sender;
int32 code;
size_t size;
cbuf *buffer;
void* buffer;
} msg;
union {