Merge pull request #3114 from tyustli/cpp

[components] [cplusplus] fix Queue.h mpool bug
This commit is contained in:
Bernard Xiong 2019-09-30 19:54:39 +08:00 committed by GitHub
commit 45e905141c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ public:
private:
struct rt_messagequeue mID;
char mPool[(sizeof(struct rt_messagequeue) + sizeof(T)) * queue_sz];
char mPool[(sizeof(void *) + RT_ALIGN(sizeof(T), RT_ALIGN_SIZE)) * queue_sz];
};
}