summaryrefslogtreecommitdiff
path: root/Userland
AgeCommit message (Expand)Author
2019-07-22Kernel: Add a mechanism for listening for changes to an inode.Andreas Kling
2019-07-21ls: Don't print an empty line if there were no files to show.Andreas Kling
2019-07-19Kernel: Only allow superuser to halt() the system (#342)Jesse
2019-07-19Kernel+Userland: Addd reboot syscall (#334)Jesse
2019-07-18Userland: Remove some no-longer-needed test utilities.Andreas Kling
2019-07-18LibDraw: Introduce (formerly known as SharedGraphics.)Andreas Kling
2019-07-18ps: Widen state field to fit "Condition" and other fieldsRobin Burchell
2019-07-18ps: Port to using CProcessStatisticsReader and /proc/allRobin Burchell
2019-07-18CProcessStatisticsReader: Be consistent about terminology from the kernel downRobin Burchell
2019-07-17Port LibGUI to use CIPCClientSideConnectionRobin Burchell
2019-07-17top: Widen "state" field slightly to accomodate "Condition".Andreas Kling
2019-07-17Work on AudioServerRobin Burchell
2019-07-13chmod: Add understanding of simple permission strings. (#295)Albert Gafiyatullin
2019-07-10top: Remove some unused code.Andreas Kling
2019-07-10Userland+LibCore: Use CProcessStatisticsReader to implement top.Andreas Kling
2019-07-03AK: Rename the common integer typedefs to make it obvious what they are.Andreas Kling
2019-07-02Userland: Don't return an error when jp is run without argumentsDan MacDonald
2019-07-01Kernel+Userland: Convert /proc/df to JSON.Andreas Kling
2019-06-30Meta: Removed all gitignore in the source tree only keeping the root oneVAN BOSSUYT Nicolas
2019-06-30Userland: Add a simple JSON pretty-printing utility called /bin/jpAndreas Kling
2019-06-30Userland: Fixed "id" usage error typo (#254)Rhin
2019-06-29Userland: Added flags to id command (#253)Rhin
2019-06-29Kernel: Change the format of /proc/all to JSON.Andreas Kling
2019-06-23QuickShow: Allow panning and zooming the image instead of stretching it.Andreas Kling
2019-06-22printf: Support %zu (the 'z' is really just ignored.)Andreas Kling
2019-06-22Userland: Fix more compiler warnings.Andreas Kling
2019-06-22printf: Oops, '-' is the left padding modifier, not ' '.Andreas Kling
2019-06-22Userland: Fix many compiler warnings.Andreas Kling
2019-06-19Kernel+LibC: Make page fault crashes a bit more readable.Andreas Kling
2019-06-16Userland: Add wc program (#228)Callum Attryde
2019-06-16Kernel/Userland: Add a halt syscall, and a shutdown binary to invoke itRobin Burchell
2019-06-16Kernel+Userland: Expose list of network adapters through /proc/netadapters.Andreas Kling
2019-06-12Userland: Add test program for stressing memory allocationConrad Pankoff
2019-06-08Userland: Implement -c [characters] option for headConrad Pankoff
2019-06-07Meta: Tweak .clang-format to not wrap braces after enums.Andreas Kling
2019-06-07ProcessManager+top: Rename "linear" size to "virtual" size.Andreas Kling
2019-06-07Userland: Run clang-format on everything.Andreas Kling
2019-06-07Userland: Add a little test program for the alarm() syscall.Andreas Kling
2019-06-06tail: Default tail behavior with no arguments (#209)Ben Sloane
2019-06-06tail: Shell programs should return 1 to indicate failure.Andreas Kling
2019-06-06cat: Fix some oversights in error handling.Andreas Kling
2019-06-06LookupServer+LibC: Add support for reverse DNS lookups via gethostbyaddr().Andreas Kling
2019-06-06LibC: inet_pton() should return 1 on success, 0 or -1 on failure.Andreas Kling
2019-06-03Userland: Implement recursive `rm`Christopher Dumas
2019-06-02AK: Add implicit String -> StringView conversionRobin Burchell
2019-06-02Userland: Use CFile in dmesgRobin Burchell
2019-06-02Userland: Use CFile in mmRobin Burchell
2019-06-02Userland: Use CFile in psRobin Burchell
2019-06-02Userland: Use CFile inside sysctlRobin Burchell
2019-06-02Userland: Add tee command (#166)vger92