Skip to content
This repository has been archived by the owner on Jul 12, 2024. It is now read-only.

Commit

Permalink
Docs: ucxxrt has been archived, please use Musa.Runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
MiroKaku committed Jul 12, 2024
1 parent 1181b2d commit 4bddce4
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 1 deletion.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,18 @@

* [简体中文](https://github.com/MiroKaku/ucxxrt/blob/main/README.zh-CN.md)

<br />
----

# [Musa.Runtime](https://github.com/MiroKaku/Musa.Runtime) is available, ucxxrt is no longer provides support!!!

### Musa.Runtime is the implementation of the new architecture of ucxxrt.

### Fewer changes, more features and standard libraries support.

----
<br />

> UserMode support has been removed since March 29th, 2022. The final version known to support UserMode is [e2f159f8f](https://github.com/MiroKaku/ucxxrt/tree/e2f159f8f04a829359e3a057b70457121485b4dc). Please use [VC-LTL5](https://github.com/Chuyu-Team/VC-LTL5) instead in UserMode.
## 1. About
Expand Down
12 changes: 12 additions & 0 deletions README.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,18 @@

* [English](https://github.com/MiroKaku/ucxxrt/blob/main/README.md)

<br />
----

# [Musa.Runtime](https://github.com/MiroKaku/Musa.Runtime) 现已可用, ucxxrt 不再提供支持!!!

### Musa.Runtime 是 ucxxrt 的新架构实现。

### 更少的更改, 更多的特性和标准库支持。

----
<br />

> 03/29/2022 开始移除了 UserMode 支持。最后支持 UserMode 的版本为 [e2f159f8f](https://github.com/MiroKaku/ucxxrt/tree/e2f159f8f04a829359e3a057b70457121485b4dc), UserMode 请使用 [VC-LTL5](https://github.com/Chuyu-Team/VC-LTL5)
## 1. 关于
Expand Down
2 changes: 1 addition & 1 deletion test/unittest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ namespace UnitTest
if (Buffer1) {
*Buffer1 = 123;

const auto Buffer2 = static_cast<size_t*>(realloc(Buffer1, sizeof(size_t)));
const auto Buffer2 = static_cast<int*>(realloc(Buffer1, sizeof(size_t)));
if (Buffer2) {
ASSERT(*Buffer2 == 123);
free(Buffer2);
Expand Down

0 comments on commit 4bddce4

Please sign in to comment.