# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 1
# self = https://watcher.sour.is/conv/qxxdxua
malloc 內存分配器是怎樣實現的?**
大家好,我是島主小風哥,今天聊聊 malloc 內存分配器是怎樣實現的。在此之前我們需要回答一個基本問題,那就是我們爲什麼要發明內存分配器這種東西。程序員經常使用的內存申請方式被稱爲動態內存分配,Dynamic Memory Allocation。我們爲什麼需要動態的去進行內存分配與釋放呢?答案很簡單,因爲我們不能提前知道程序到底需要使用多少內存。那我們什麼時候才能知道呢?答案是隻有當程序真的運行 ⌘ Read more