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
package queue | |
import ( | |
"container/list" | |
"sync" | |
) | |
// Queue is a thread-safe FIFO queue implemented on top of a linked list. | |
type Queue struct { | |
list list.List |
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 | |
# Install required tools | |
sudo aptitude install squashfs-tools genisoimage | |
NewerOlder