Changeset 7d1232 in git
- Timestamp:
- Apr 27, 2012, 1:26:06 PM (11 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 944a5ac946e2f8544123239e3a920b7d77e718e1
- Parents:
- 7627f67da8dc2c135f659c4e3f2ef25e3de4f00e
- git-author:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2012-04-27 13:26:06+02:00
- git-committer:
- Andreas Steenpass <steenpass@mathematik.uni-kl.de>2013-09-13 16:35:28+02:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/extra.cc
r7627f6 r7d1232 3844 3844 } 3845 3845 else 3846 /*==================== reserved port =================*/ 3847 if (strcmp(sys_cmd,"reserve")==0) 3848 { 3849 int ssiReservePort(int clients); 3850 if ((h!=NULL) && (h->Typ()==INT_CMD)) 3851 { 3852 res->rtyp=INT_CMD; 3853 int p=ssiReservePort((int)(long)h->Data()); 3854 res->data=(void*)(long)p; 3855 return (p==0); 3856 } 3857 else 3858 { 3859 WerrorS("system(\"reserve\",<int>)"); 3860 } 3861 return TRUE; 3862 } 3863 else 3864 if (strcmp(sys_cmd,"reservedLink")==0) 3865 { 3866 si_link ssiCommandLink(); 3867 res->rtyp=LINK_CMD; 3868 si_link p=ssiCommandLink(); 3869 res->data=(void*)p; 3870 return (p==NULL); 3871 } 3872 else 3846 3873 /*==================== Test Boos Epure ==================================*/ 3847 3874 if (strcmp(sys_cmd, "Hallo")==0)
Note: See TracChangeset
for help on using the changeset viewer.