| | |
| | | plugin->function->at_start = dlsym(plugin->libhandle, "at_start"); |
| | | plugin->function->after_vesicle_init = dlsym(plugin->libhandle, "after_vesicle_init"); |
| | | plugin->function->vm_hard_constraint = dlsym(plugin->libhandle, "vm_hard_constraint"); |
| | | plugin->function->vm_energy_before = dlsym(plugin->libhandle, "vm_energy_before"); |
| | | plugin->function->vm_energy_after = dlsym(plugin->libhandle, "vm_energy_after"); |
| | | plugin->function->vm_energy_before_prepare = dlsym(plugin->libhandle, "vm_energy_before_prepare"); |
| | | plugin->function->vm_energy_before_execute = dlsym(plugin->libhandle, "vm_energy_before_execute"); |
| | | plugin->function->vm_energy_after_prepare = dlsym(plugin->libhandle, "vm_energy_after_prepare"); |
| | | plugin->function->vm_energy_after_execute = dlsym(plugin->libhandle, "vm_energy_after_execute"); |
| | | plugin->function->vm_new_state_rejected = dlsym(plugin->libhandle, "vm_new_state_rejected"); |
| | | plugin->function->vm_new_state_accepted = dlsym(plugin->libhandle, "vm_new_state_accepted"); |
| | | |
| | |
| | | for(int i=0;i<number_of_plugins;i++){ |
| | | plist->plugin[i]=init_plugin(plugin_filenames[i]); |
| | | } |
| | | plist->n=number_of_plugins; |
| | | return plist; |
| | | } |
| | | |