This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
url="$1" | |
file_names="${@:2}" | |
read -ra file_names_list <<< "$file_names" | |
#prompt for url if not provided | |
until [ ! -z "$url" ] ; do | |
read -p "url=" url |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "types.h" | |
#include "user.h" | |
#include "param.h" | |
#include "pstat.h" | |
#undef USE_YIELD | |
#define MAX_CHILDREN 32 | |
#define LARGE_TICKET_COUNT 100000 | |
#define MAX_YIELDS_FOR_SETUP 100 |