bug 1133075 - fixup includes CLOSED TREE

This commit is contained in:
Trevor Saunders 2015-02-18 17:31:40 -05:00
Родитель 01d7c211a0
Коммит ed728808f8
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -5,6 +5,8 @@
#ifndef BASE_FILE_DESCRIPTOR_SHUFFLE_H_
#define BASE_FILE_DESCRIPTOR_SHUFFLE_H_
#include "mozilla/Attributes.h"
// This code exists to perform the shuffling of file descriptors which is
// commonly needed when forking subprocesses. The naive approve is very simple,
// just call dup2 to setup the desired descriptors, but wrong. It's tough to