Featured post

c# - Usage of Server Side Controls in MVC Frame work -

i using asp.net 4.0 , mvc 2.0 web application. project requiremrnt have use server side control in application not possibl in noraml case. ideally want use adrotator control , datalist control. i saw few samples , references in codepleax mvc controllib howwver found less useful. can tell how utilize theese controls in asp.net application along mvc. note: please provide functionalities related adrotator , datalist controls not equivalent functionalities thanks in advace. mvc pages not use normal .net solution makes use of normal .net components impossible. a normal .net page use event driven solution call different methods service side mvc use actions , view completly different way handle things. also, mvc not use viewstate normal .net controlls require. found article discussing mixing of normal .net , mvc.

c - fopen does not return -


i used 'fopen' in c program open file in readonly mode (r). in case observed fopen call not return. not return null or valid pointer - execution gets blocked @ fopen call. patch of file absolutely correct (i have verified that) , there no permission related issues. can please tell reason kind if behavior. kind of appreciable. there related gcc or glibc?

edit

here sample code

printf("%s %d\n",__function__,__line__); if ((fp = fopen(argv[1], "r")) == null) {    printf("%s %d\n",__function__,__line__);    return; } printf("%s %d\n",__function__,__line__); 

when run code, first print (before calling fopen) , after program halts. fopen not complete it's operation. file simple configuration file '.conf' extension , file can opened other means vi, cat etc. there should not nfs related issue. filesystem ext3.

thanks in advance, souvik

here's few reasons:

  • you've corrupted memory somewhere, , bets off what's happening (run program through valgrind)
  • you're calling code inside signal handler, fopen() not signal async safe, happen (a deadlock due file* internal mutex common though)
  • the file fifo , in cases opening file block until opens file @ other end(read/writing)
  • the file on stale nfs mount.
  • the file character/block special file semantics open blocks until interesting happens,

Comments

Popular posts from this blog

c# - Usage of Server Side Controls in MVC Frame work -

cocoa - Nesting arrays into NSDictionary object (Objective-C) -

ios - Very simple iPhone App crashes on UILabel settext -