Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

31 lines
509 B

/*++
Copyright (C) 2000-2001 Microsoft Corporation
--*/
#include "precomp.h"
#include <wbemcomn.h>
#include "a51fib.h"
#include <tls.h>
void CALLBACK A51FiberBase(void* p)
{
CFiberTask* pTask = (CFiberTask*)p;
pTask->Execute();
//
// No need to clean up --- it's the job of our caller
//
}
void* CreateFiberForTask(CFiberTask* pTask)
{
return CreateFiber(0, A51FiberBase, pTask);
}
void ReturnFiber(void* pFiber)
{
DeleteFiber(pFiber);
}