Mercurial > hg > Members > kono > Cerium
view include/TaskManager/SpeThreads.h @ 70:178459e03f5c
*** empty log message ***
author | gongo |
---|---|
date | Mon, 18 Feb 2008 01:13:00 +0900 |
parents | 1034077dd217 |
children | 5a1a5f4c28fd |
line wrap: on
line source
#ifndef INCLUDED_SPE_THREADS #define INCLUDED_SPE_THREADS #include <libspe2.h> #include <pthread.h> #define SPE_ELF "spe-main" typedef struct arg { int speid; spe_context_ptr_t ctx; } thread_arg_t; class SpeThreads { public: /* constructor */ SpeThreads(int num = 1); /* functions */ void init(void); int get_mail(int speid); void send_mail(int speid, unsigned int *data); static void *spe_thread_run(void *arg); static void *frontend_thread_run(void *arg); private: /* variables */ spe_program_handle_t *spe_handle; spe_context_ptr_t *spe_ctx; pthread_t *threads; thread_arg_t *args; int spe_num; }; #endif