22 lines
518 B
C#
22 lines
518 B
C#
|
///////////////////////////////////////////////////////////////////////////////
|
||
|
//
|
||
|
// Microsoft Research Singularity
|
||
|
//
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
//
|
||
|
///////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
using System;
|
||
|
|
||
|
namespace RunParallel
|
||
|
{
|
||
|
class Task
|
||
|
{
|
||
|
public string CommandLine;
|
||
|
public string Name;
|
||
|
public bool DrainRequired;
|
||
|
public bool Succeeded;
|
||
|
public Exception Error;
|
||
|
}
|
||
|
}
|