错误“活动作业过多”通过cupsPrintFile函数打印
在Linux下的C代码中,我使用libcups在如下代码中进行打印输出:
int job_id = cupsPrintFile(printerName, tmpFileNameCopiaVettore, addToprinterTitle, cupsOptionCopiaVettore.num_options, cupsOptionCopiaVettore.options);
if (job_id == 0) {
printf("Error ***** %s (printerName <%s>)\n", cupsLastErrorString(), printerName);
}
如果我发送大量打印,我会收到错误“太多活动作业”,我如何在我的代码中管理它?
In C code under Linux I use libcups to make printouts in a code like :
int job_id = cupsPrintFile(printerName, tmpFileNameCopiaVettore, addToprinterTitle, cupsOptionCopiaVettore.num_options, cupsOptionCopiaVettore.options);
if (job_id == 0) {
printf("Error ***** %s (printerName <%s>)\n", cupsLastErrorString(), printerName);
}
If I send a large number of prints I get the error "Too many active jobs", how can i manage it within my code ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论